From 2b61f996238a0c5cefb51731ec2deb7cf8cee636 Mon Sep 17 00:00:00 2001 From: kanade Date: Mon, 12 Dec 2022 09:57:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- customer/service/audit.go | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/customer/service/audit.go b/customer/service/audit.go index c3fe360..7b2e262 100644 --- a/customer/service/audit.go +++ b/customer/service/audit.go @@ -7,6 +7,12 @@ import ( "time" ) +const ( + AuditHistoryAuditStatusNone = 1 // 待审核 + AuditHistoryAuditStatusAdopt = 2 // 审核通过 + AuditHistoryAuditStatusReject = 3 // 审核驳回 +) + type audit struct { } type AuditSearch struct { @@ -51,8 +57,9 @@ type ArgsHistory struct { } 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 {