|
|
@ -28,16 +28,17 @@ type ArgsAuditLists struct {
|
|
|
|
Page bean.Page // 分页
|
|
|
|
Page bean.Page // 分页
|
|
|
|
}
|
|
|
|
}
|
|
|
|
type AuditItem struct {
|
|
|
|
type AuditItem struct {
|
|
|
|
Id uint `json:"id"`
|
|
|
|
Id uint `json:"id"`
|
|
|
|
ServiceId uint `json:"serviceId"`
|
|
|
|
ServiceId uint `json:"serviceId"`
|
|
|
|
UserId uint `json:"userId"`
|
|
|
|
UserId uint `json:"userId"`
|
|
|
|
UserName string `json:"userName"`
|
|
|
|
UserName string `json:"userName"`
|
|
|
|
ServiceName string `json:"serviceName"`
|
|
|
|
ServiceName string `json:"serviceName"`
|
|
|
|
ApplyUserId uint `json:"applyUserId"`
|
|
|
|
ApplyUserId uint `json:"applyUserId"`
|
|
|
|
ApplyAt int64 `json:"applyAt"`
|
|
|
|
ApplyUserName string `json:"applyUserName"`
|
|
|
|
AuditStatus uint `json:"auditStatus"`
|
|
|
|
ApplyAt int64 `json:"applyAt"`
|
|
|
|
AuditUserId uint `json:"auditUserId"`
|
|
|
|
AuditStatus uint `json:"auditStatus"`
|
|
|
|
AuditAt int64 `json:"auditAt"`
|
|
|
|
AuditUserId uint `json:"auditUserId"`
|
|
|
|
|
|
|
|
AuditAt int64 `json:"auditAt"`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
type ReplyAuditLists struct {
|
|
|
|
type ReplyAuditLists struct {
|
|
|
|
Lists []AuditItem `json:"lists"`
|
|
|
|
Lists []AuditItem `json:"lists"`
|
|
|
|