bug--直播商品加入枚举
This commit is contained in:
@ -0,0 +1,27 @@
|
||||
/**
|
||||
* Copyright (C) 2018-2020
|
||||
* All rights reserved, Designed By www.yixiang.co
|
||||
|
||||
*/
|
||||
package co.yixiang.enums;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @author hupeng
|
||||
* 直播商品相关枚举
|
||||
*/
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum LiveGoodsEnum {
|
||||
|
||||
IS_Audit_0(0,"未审核"),
|
||||
IS_Audit_1(1,"审核中"),
|
||||
IS_Audit_2(2,"审核通过"),
|
||||
IS_Audit_3(3,"审核失败");
|
||||
|
||||
private Integer value;
|
||||
private String desc;
|
||||
|
||||
}
|
Reference in New Issue
Block a user