bug--直播商品加入枚举

This commit is contained in:
taozi
2020-08-12 09:28:12 +08:00
parent a4f2800ee7
commit f4e9cc2934
8 changed files with 94 additions and 18 deletions

View File

@ -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;
}