| | |
| | | ClientId: serviceFollowup.ClientId, |
| | | Number: serviceFollowup.Number, |
| | | ContactId: serviceFollowup.ContactId, |
| | | ServiceId: serviceFollowup.ServiceId, |
| | | ServiceOrderId: serviceFollowup.ServiceOrderId, |
| | | MemberId: serviceFollowup.MemberId, |
| | | PlanId: serviceFollowup.PlanId, |
| | | SatisfactionId: serviceFollowup.Satisfaction, |
| | |
| | | // @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 |
| | |
| | | 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 |