diff --git a/customer/service/audit.go b/customer/service/audit.go index 553b5b1..24333c9 100644 --- a/customer/service/audit.go +++ b/customer/service/audit.go @@ -11,8 +11,9 @@ type audit struct { audit2.Audit } type AuditSearch struct { - Status uint // 审核状态 1=未审核 2=通过 3=驳回 - Name string // 用户名称 + ApplyUserId uint // 申请人 + Status uint // 审核状态 1=未审核 2=通过 3=驳回 + Name string // 用户名称 } type ArgsAuditLists struct { Search AuditSearch // 筛选 diff --git a/customer/user/depositAudit.go b/customer/user/depositAudit.go index c105d9e..373536c 100644 --- a/customer/user/depositAudit.go +++ b/customer/user/depositAudit.go @@ -23,6 +23,7 @@ type DepositAuditSearch struct { ApplyDateEnd string // 申请日期 AuditDateStart string // 审核日期 AuditDateEnd string // 审核日期 + ApplyUserId uint // 充值申请人 } type ReplyDepositAuditList struct { Lists []DepositAuditItem `json:"lists"`