8 changed files with 82 additions and 12 deletions
@ -0,0 +1,33 @@ |
|||
package com.bnyer.img.constants; |
|||
|
|||
/** |
|||
* 平台常量 |
|||
* @author chengkun |
|||
* @date 2022/4/21 18:12 |
|||
*/ |
|||
public class StatusImgConstant { |
|||
/** |
|||
* 待审核 |
|||
*/ |
|||
public static final String UNCHECK = "0"; |
|||
|
|||
/** |
|||
* 审核通过 |
|||
*/ |
|||
public static final String PASS = "1"; |
|||
|
|||
/** |
|||
* 审核拒绝 |
|||
*/ |
|||
public static final String UNPASS = "2"; |
|||
|
|||
/** |
|||
* 已上架 |
|||
*/ |
|||
public static final String ONLINE = "3"; |
|||
|
|||
/** |
|||
* 已下架 |
|||
*/ |
|||
public static final String OFFLINE = "4"; |
|||
} |
|||
Loading…
Reference in new issue