96 lines
2.8 KiB
Go
96 lines
2.8 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 //已回退失败
|
|
ImageAudit_ServiceFailed = 10 //批次任务失败
|
|
)
|
|
|
|
// 文字审核表状态
|
|
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 //回退失败
|
|
TextAudit_ServiceFailed = 10 //批次任务失败
|
|
)
|
|
|
|
// 意见反馈表的status审批状态
|
|
const (
|
|
Feedback_Created = 0 //待处理
|
|
Feedback_Handling = 1 //跟进中
|
|
Feedback_Handled = 2 //已处理
|
|
Feedback_Invalid = 3 //无效
|
|
Feedback_RelatedToIteration = 4 //迭代相关
|
|
)
|
|
|
|
// 动态表status状态
|
|
const (
|
|
Moment_Private = 0 //仅自己可见
|
|
Moment_OpenToCircles = 1 //仅朋友圈可见
|
|
Moment_Public = 2 //公开
|
|
)
|
|
|
|
// 是否被关注
|
|
const (
|
|
IsFollowed_No = 0 //否
|
|
IsFollowed_Yes = 1 //是
|
|
)
|
|
|
|
// 是否被点赞
|
|
const (
|
|
IsThumbedUp_No = 0 //否
|
|
IsThumbedUp_Yes = 1 //是
|
|
)
|