fix
wangpengfei
2023-07-28 b4400a06b5f801bc7a85320680d0b6c45c547ff0
api/v1/followRecord.go
@@ -43,7 +43,6 @@
   ctx.Ok()
}
// Delete
//
//   @Tags      FollowRecord
@@ -200,26 +199,26 @@
// List
//
//   @Tags      FollowRecord
//   @Summary   跟进记录列表
//   @Summary   回访记录列表
//   @Produce   application/json
//   @Param      object   body      request.GetFollowRecordList   true   "参数"
//   @Success   200      {object}   contextx.Response{data=response.FollowRecordResponse}
//   @Router      /api/followRecord/list [post]
func (con *FollowRecordApi) List(c *gin.Context) {
func (fr *FollowRecordApi) List(c *gin.Context) {
   var params request.GetFollowRecordList
   ctx, ok := contextx.NewContext(c, &params)
   if !ok {
      return
   }
   followRecords, errCode := followRecordService.GetFollowRecordList(params.Page, params.PageSize, params.Keyword)
   followRecords, total, errCode := followRecordService.GetFollowRecordList(params.Page, params.PageSize, params.Keyword)
   if errCode != ecode.OK {
      ctx.Fail(errCode)
      return
   }
   ctx.OkWithDetailed(response.FollowRecordResponse{
      List: followRecords,
      Count: len(followRecords),
      List:  followRecords,
      Count: int(total),
   })
}
}