fix
wangpengfei
2023-08-28 c5a0eb549cba2cd358a2d0496c44f3a289f15d9c
api/v1/serviceFollowup.go
@@ -111,7 +111,7 @@
      ClientId:       serviceFollowup.ClientId,
      Number:         serviceFollowup.Number,
      ContactId:      serviceFollowup.ContactId,
      ServiceId:      serviceFollowup.ServiceId,
      ServiceOrderId: serviceFollowup.ServiceOrderId,
      MemberId:       serviceFollowup.MemberId,
      PlanId:         serviceFollowup.PlanId,
      SatisfactionId: serviceFollowup.Satisfaction,
@@ -132,7 +132,9 @@
//   @Summary   回访单管理列表
//   @Produce   application/json
//   @Param      object   body      request.GetServiceFollowupList   true   "参数"
//   @Success   200      {object}   contextx.Response{data=response.ServiceFollowupResponse}
//
// @Success   200      {object}   contextx.Response{data=response.ServiceFollowupResponse}
//
//   @Router      /api/serviceFollowup/list [post]
func (con *ServiceFollowupApi) List(c *gin.Context) {
   var params request.GetServiceFollowupList
@@ -141,7 +143,7 @@
      return
   }
   serviceFollowups, total, errCode := serviceFollowupService.GetServiceFollowupList(params.Page, params.PageSize, params.Keyword)
   serviceFollowups, total, errCode := serviceFollowupService.GetServiceFollowupList(params.Page, params.PageSize, params.KeywordType, params.Keyword, params.ServiceOrderId)
   if errCode != ecode.OK {
      ctx.Fail(errCode)
      return