You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
|
2 weeks ago
|
package com.youlai.boot.admin.constant;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 内容审核状态常量
|
||
|
|
*/
|
||
|
|
public final class AuditConstants {
|
||
|
|
|
||
|
|
private AuditConstants() {}
|
||
|
|
|
||
|
|
/** 审核状态: 机审中 */
|
||
|
|
public static final String AUDIT_REVIEWING = "reviewing";
|
||
|
|
/** 审核状态: 通过 */
|
||
|
|
public static final String AUDIT_PASSED = "passed";
|
||
|
|
/** 审核状态: 不通过 */
|
||
|
|
public static final String AUDIT_FAILED = "failed";
|
||
|
|
/** 审核状态: 待人工 */
|
||
|
|
public static final String AUDIT_MANUAL_REVIEW = "manual_review";
|
||
|
|
/** 审核状态: 申诉中 */
|
||
|
|
public static final String AUDIT_APPEALING = "appealing";
|
||
|
|
|
||
|
|
/** 任务状态: 审核中 */
|
||
|
|
public static final String TASK_REVIEWING = "reviewing";
|
||
|
|
/** 任务状态: 机审成功 */
|
||
|
|
public static final String TASK_SUCCESS = "success";
|
||
|
|
/** 任务状态: 转人工 */
|
||
|
|
public static final String TASK_TO_MANUAL = "to_manual";
|
||
|
|
|
||
|
|
/** 任务结果: 通过 */
|
||
|
|
public static final String RESULT_PASSED = "passed";
|
||
|
|
/** 任务结果: 未通过 */
|
||
|
|
public static final String RESULT_FAILED = "failed";
|
||
|
|
|
||
|
|
/** 机审建议: 通过 */
|
||
|
|
public static final String SUGGESTION_PASS = "pass";
|
||
|
|
/** 机审建议: 复审 */
|
||
|
|
public static final String SUGGESTION_REVIEW = "review";
|
||
|
|
/** 机审建议: 违规 */
|
||
|
|
public static final String SUGGESTION_BLOCK = "block";
|
||
|
|
|
||
|
|
}
|