Merge branch 'feat-hjj-QuestionnaireSurvey' into dev

This commit is contained in:
jiaji.H 2026-03-11 18:12:29 +08:00
commit 64c800ca09

View File

@ -21,6 +21,8 @@ func BundleRouter(r *gin.RouterGroup) {
bundleClientNoAuthRoute.POST("export/work-cast-info", bundle.ExportWorkCastInfo) bundleClientNoAuthRoute.POST("export/work-cast-info", bundle.ExportWorkCastInfo)
bundleClientNoAuthRoute.POST("export/bundle-price-info", bundle.ExportBundlePriceInfo) bundleClientNoAuthRoute.POST("export/bundle-price-info", bundle.ExportBundlePriceInfo)
bundleClientNoAuthRoute.POST("survey/is-send", bundle.IsSendSurvey) bundleClientNoAuthRoute.POST("survey/is-send", bundle.IsSendSurvey)
bundleClientNoAuthRoute.POST("survey/bundleInfo", bundle.QuestionnaireSurveyBundleInfo)
bundleClientNoAuthRoute.POST("survey/create", bundle.QuestionnaireSurveyCreate)
} }
bundleClientRoute := bundleRoute.Group("system") bundleClientRoute := bundleRoute.Group("system")
{ {
@ -59,8 +61,6 @@ func BundleRouter(r *gin.RouterGroup) {
survey := bundleClientRoute.Group("survey") survey := bundleClientRoute.Group("survey")
{ {
survey.POST("list", bundle.QuestionnaireSurveyList) survey.POST("list", bundle.QuestionnaireSurveyList)
survey.POST("bundleInfo", bundle.QuestionnaireSurveyBundleInfo)
survey.POST("create", bundle.QuestionnaireSurveyCreate)
} }
} }