作者 唐旭辉

添加输出字段

@@ -263,6 +263,8 @@ type RspAuditList struct { @@ -263,6 +263,8 @@ type RspAuditList struct {
263 ReviewStatusName string `json:"review_status_name"` 263 ReviewStatusName string `json:"review_status_name"`
264 EnableStatus int8 `json:"enable_status"` 264 EnableStatus int8 `json:"enable_status"`
265 EnableStatusName string `json:"enable_status_name"` 265 EnableStatusName string `json:"enable_status_name"`
  266 + DiscoveryScore string `json:"discovery_score"`
  267 + CommentTotal string `json:"comment_total"`
266 } 268 }
267 269
268 type ChanceFlowLog struct { 270 type ChanceFlowLog struct {
@@ -135,6 +135,8 @@ func GetAuditList(param protocol.RequestAuditList, companyid int64, userid int64 @@ -135,6 +135,8 @@ func GetAuditList(param protocol.RequestAuditList, companyid int64, userid int64
135 ReviewStatus: v.ReviewStatus, 135 ReviewStatus: v.ReviewStatus,
136 ReviewStatusName: models.ChanceReviewStatusMap[v.ReviewStatus], 136 ReviewStatusName: models.ChanceReviewStatusMap[v.ReviewStatus],
137 Code: v.Code, 137 Code: v.Code,
  138 + DiscoveryScore: v.DiscoveryScore,
  139 + CommentTotal: v.CommentTotal,
138 } 140 }
139 141
140 if t < 0 { 142 if t < 0 {