finance
黄伟 2 years ago
parent 2208f8c5c7
commit 5aee1c159a

@ -28,17 +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"`
ApplyUserName string `json:"applyUserName"` ApplyType uint `json:"ApplyType"`
ApplyAt int64 `json:"applyAt"` ApplyAt int64 `json:"applyAt"`
AuditStatus uint `json:"auditStatus"` AuditStatus uint `json:"auditStatus"`
AuditUserId uint `json:"auditUserId"` AuditUserId uint `json:"auditUserId"`
AuditAt int64 `json:"auditAt"` AuditAt int64 `json:"auditAt"`
} }
type ReplyAuditLists struct { type ReplyAuditLists struct {
Lists []AuditItem `json:"lists"` Lists []AuditItem `json:"lists"`

@ -10,8 +10,8 @@ type deposit struct {
} }
type applyType uint // 申请人类型 type applyType uint // 申请人类型
const ( const (
ApplyTypeCustomer = 1 // 客户 ApplyTypePlatform = 1 // 平台
ApplyTypePlatform = 2 // 平台 ApplyTypeCustomer = 2 // 客户
DepositAuditStatusWait = 1 // 待审核 DepositAuditStatusWait = 1 // 待审核
DepositAuditStatusAdopt = 2 // 审核通过 DepositAuditStatusAdopt = 2 // 审核通过

Loading…
Cancel
Save