|
|
|
@ -7,6 +7,12 @@ import (
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
AuditHistoryAuditStatusNone = 1 // 待审核
|
|
|
|
|
AuditHistoryAuditStatusAdopt = 2 // 审核通过
|
|
|
|
|
AuditHistoryAuditStatusReject = 3 // 审核驳回
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type audit struct {
|
|
|
|
|
}
|
|
|
|
|
type AuditSearch struct {
|
|
|
|
@ -45,13 +51,15 @@ func (a *audit) Lists(ctx context.Context, args ArgsAuditLists) (reply ReplyAudi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ArgsHistory struct {
|
|
|
|
|
Page bean.Page
|
|
|
|
|
CustomerId uint
|
|
|
|
|
Page bean.Page
|
|
|
|
|
CustomerId uint
|
|
|
|
|
AuditStatus uint
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ReplyHistoryLists struct {
|
|
|
|
|
Lists []HistoryItem `json:"lists"`
|
|
|
|
|
Total int64 `json:"total"`
|
|
|
|
|
Lists []HistoryItem `json:"lists"`
|
|
|
|
|
Total int64 `json:"total"`
|
|
|
|
|
AuditStatus uint `json:"auditStatus"` // 审核状态
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type HistoryItem struct {
|
|
|
|
|