66 lines
2.0 KiB
Go
66 lines
2.0 KiB
Go
|
package consts
|
||
|
|
||
|
var RealNameAuthenticationStatusDescMap = map[int64]string{
|
||
|
RealNameAuthentication_Approved: "审批通过",
|
||
|
RealNameAuthentication_Rejected: "审批拒绝",
|
||
|
RealNameAuthentication_Created: "已创建",
|
||
|
RealNameAuthentication_Approving: "跟进中",
|
||
|
}
|
||
|
|
||
|
// 女神认证审核表的approve_status审批状态
|
||
|
const (
|
||
|
Approved = 0 //审批通过
|
||
|
Rejected = -1 //审批拒绝
|
||
|
Created = 1 //已创建
|
||
|
Approving = 2 //跟进中
|
||
|
)
|
||
|
|
||
|
// user_wx_add_check表审核状态
|
||
|
const (
|
||
|
UserWxAddCheck_Checking = 0 //审核中
|
||
|
UserWxAddCheck_Added = 1 //已添加
|
||
|
UserWxAddCheck_Rejected = 2 //已拒绝
|
||
|
)
|
||
|
|
||
|
// 实名认证表的approve_status审批状态
|
||
|
const (
|
||
|
RealNameAuthentication_Approved = 0 //审批通过
|
||
|
RealNameAuthentication_Rejected = -1 //审批拒绝
|
||
|
RealNameAuthentication_Created = 1 //已创建
|
||
|
RealNameAuthentication_Approving = 2 //跟进中
|
||
|
)
|
||
|
|
||
|
// 联系客服表的已读状态
|
||
|
const (
|
||
|
ContactCustomerService_NotRead = 0 //未读
|
||
|
ContactCustomerService_Read = 1 //已读
|
||
|
)
|
||
|
|
||
|
// 图像审核表状态
|
||
|
const (
|
||
|
ImageAudit_Created = 0 //已创建
|
||
|
ImageAudit_Auditing = 1 //审核中
|
||
|
ImageAudit_Passed = 2 //已通过
|
||
|
ImageAudit_Rejected = 3 //已拒绝
|
||
|
ImageAudit_Rollbacked = 4 //已回退
|
||
|
ImageAudit_ManuallyPassed = 5 //已通过
|
||
|
ImageAudit_ManuallyRejected = 6 //已拒绝
|
||
|
ImageAudit_ManuallyRollbacked = 7 //已回退
|
||
|
ImageAudit_Expired = 8 //已失效
|
||
|
ImageAudit_Failed = 9 //已失败
|
||
|
)
|
||
|
|
||
|
// 文字审核表状态
|
||
|
const (
|
||
|
TextAudit_Created = 0 //已创建
|
||
|
TextAudit_Auditing = 1 //审核中
|
||
|
TextAudit_Passed = 2 //已通过
|
||
|
TextAudit_Rejected = 3 //已拒绝
|
||
|
TextAudit_Rollbacked = 4 //已回退
|
||
|
TextAudit_ManuallyPassed = 5 //已通过
|
||
|
TextAudit_ManuallyRejected = 6 //已拒绝
|
||
|
TextAudit_ManuallyRollbacked = 7 //已回退
|
||
|
TextAudit_Expired = 8 //已失效
|
||
|
TextAudit_Failed = 9 //处理失败
|
||
|
)
|