fix
wangpengfei
2023-07-27 45a526194b33ddb4c7e668d7582e7481d0ca1fca
api/v1/followRecord.go
@@ -43,7 +43,6 @@
   ctx.Ok()
}
// Delete
//
//   @Tags      FollowRecord
@@ -200,12 +199,12 @@
// List
//
//   @Tags      FollowRecord
//   @Summary   跟进记录列表
//   @Summary   回访记录列表
//   @Produce   application/json
//   @Param      object   body      request.GetFollowRecordList   true   "参数"
//   @Success   200      {object}   contextx.Response{data=response.FollowRecordResponse}
//   @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 {
@@ -219,7 +218,7 @@
   }
   ctx.OkWithDetailed(response.FollowRecordResponse{
      List: followRecords,
      List:  followRecords,
      Count: len(followRecords),
   })
}