...
|
...
|
@@ -225,3 +225,21 @@ type CategoryEditSortRequest struct { |
|
|
}
|
|
|
type CategoryEditSortResponse struct {
|
|
|
}
|
|
|
|
|
|
//RequestAuditList 机会管理-获取机会列表
|
|
|
type RequestAuditList struct {
|
|
|
RequestPageInfo
|
|
|
}
|
|
|
|
|
|
type ResponseAuditList struct {
|
|
|
Id int64 `json:"id"` //机会的id
|
|
|
ChanceType1 string `json:"chance_type_1"` //一级分类
|
|
|
ChanceType2 string `json:"chance_type_2"` //二级分类
|
|
|
UserName string `json:"user_name"` // 提交人
|
|
|
Department string `json:"department"` //提交部门
|
|
|
CreateTime int64 `json:"create_time"` //提交时间
|
|
|
PublishStatus int `json:"publish_status"` //公开状态
|
|
|
PublishStatusName string `json:"publish_status_name"` //
|
|
|
ReviewStatus int `json:"review_status"` //审批状态
|
|
|
ReviewStatusName string `json:"review_status_name"`
|
|
|
} |
...
|
...
|
|