更新sql和代码规范修改
This commit is contained in:
@ -4,7 +4,7 @@ import co.yixiang.yshop.framework.common.exception.ErrorCode;
|
||||
|
||||
/**
|
||||
* Product 错误码枚举类
|
||||
*
|
||||
* <p>
|
||||
* product 系统,使用 1-008-000-000 段
|
||||
*/
|
||||
public interface ErrorCodeConstants {
|
||||
|
@ -10,9 +10,9 @@ import lombok.Getter;
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum CanvasTerminalEnum {
|
||||
MINI(1,"小程序"),
|
||||
H5(2,"h5"),
|
||||
APP(3,"APP");
|
||||
MINI(1, "小程序"),
|
||||
H5(2, "h5"),
|
||||
APP(3, "APP");
|
||||
|
||||
private Integer value;
|
||||
private String desc;
|
||||
|
@ -10,8 +10,8 @@ import lombok.Getter;
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum StateEnum {
|
||||
CLOSE(0,"关闭"),
|
||||
OPEN(1,"开启");
|
||||
CLOSE(0, "关闭"),
|
||||
OPEN(1, "开启");
|
||||
|
||||
private Integer value;
|
||||
private String desc;
|
||||
|
@ -10,11 +10,11 @@ import lombok.Getter;
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum PopupJumpTypeEnum {
|
||||
NO_JUMP(0,"不跳转"),
|
||||
PRODUCT(1,"商品"),
|
||||
CATEGORY(2,"分类"),
|
||||
COUPON(3,"优惠券"),
|
||||
MINI_PROGRAM(4,"小程序");
|
||||
NO_JUMP(0, "不跳转"),
|
||||
PRODUCT(1, "商品"),
|
||||
CATEGORY(2, "分类"),
|
||||
COUPON(3, "优惠券"),
|
||||
MINI_PROGRAM(4, "小程序");
|
||||
|
||||
private Integer value;
|
||||
private String desc;
|
||||
|
Reference in New Issue
Block a user