service/api/consts/status.go

143 lines
4.4 KiB
Go
Raw Normal View History

2023-12-21 22:17:40 +08:00
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 //批次任务失败
2023-12-21 22:17:40 +08:00
)
// 文字审核表状态
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 //批次任务失败
2024-02-22 21:50:34 +08:00
)
// 动态审核表状态
const (
MomentAudit_Created = 0 //已创建
MomentAudit_Auditing = 1 //审核中
MomentAudit_Passed = 2 //已通过
MomentAudit_Rejected = 3 //已拒绝
MomentAudit_Rollbacked = 4 //已回退
MomentAudit_ManuallyPassed = 5 //已人工通过
MomentAudit_ManuallyRejected = 6 //已人工拒绝
MomentAudit_ManuallyRollbacked = 7 //已人工回退
MomentAudit_Expired = 8 //已失效
MomentAudit_Failed = 9 //已回退失败
MomentAudit_ServiceFailed = 10 //批次任务失败
2023-12-21 22:17:40 +08:00
)
2023-12-28 18:20:53 +08:00
// 意见反馈表的status审批状态
const (
Feedback_Created = 0 //待处理
Feedback_Handling = 1 //跟进中
Feedback_Handled = 2 //已处理
Feedback_Invalid = 3 //无效
2023-12-29 18:48:37 +08:00
Feedback_RelatedToIteration = 4 //迭代相关
2023-12-28 18:20:53 +08:00
)
2024-02-01 20:06:43 +08:00
// 动态表status状态
const (
Moment_Private = 0 //仅自己可见
Moment_OpenToCircles = 1 //仅朋友圈可见
Moment_Public = 2 //公开
)
2024-01-19 00:31:03 +08:00
// 是否被关注
const (
IsFollowed_No = 0 //否
IsFollowed_Yes = 1 //是
)
// 是否被点赞
const (
IsThumbedUp_No = 0 //否
IsThumbedUp_Yes = 1 //是
)
2024-02-07 12:07:28 +08:00
// 是否已经对齐
2024-02-22 21:50:34 +08:00
// 有对齐需求的任务需要单独在外封装一层审核任务如动态审核表MomentAuditTask单个查询不查询这些已经对齐的任务
2024-02-07 12:07:28 +08:00
const (
ImageAuditIsAligned_No = 0 //否
ImageAuditIsAligned_Yes = 1 //是
TextAuditIsAligned_No = 0 //否
TextAuditIsAligned_Yes = 1 //是
)
2024-03-12 12:06:45 +08:00
// 账号处罚状态
const (
AccountPunishment_Punishing = 0 //处罚中
AccountPunishment_Finished = 1 //正常结束
AccountPunishment_Interrupted = 2 //提前中止
)
2024-03-07 01:18:41 +08:00
// 账户状态
const (
AccountStatus_Normal = 0 //正常
AccountStatus_Cancelling = 1 //账户注销中
AccountStatus_Cancelled = 2 //账户已注销
)
// 账户注销表状态
const (
AccountCancellationStatus_Cancelling = 0 //注销中
AccountCancellationStatus_Cancelled = 1 //已注销
AccountCancellationStatus_Aborted = 2 //已中止
AccountCancellationStatus_CancellationExecuting = 3 //注销执行中
2024-03-07 01:43:30 +08:00
AccountCancellationVOStatus_Normal = 2 //账户状态正常(已中止)
2024-03-07 01:18:41 +08:00
)