更新sql和代码规范修改

This commit is contained in:
moxiangrong
2024-02-18 15:26:45 +08:00
parent 6f5e6e4662
commit c132b68745
1293 changed files with 43935 additions and 18456 deletions

View File

@ -4,7 +4,7 @@ import co.yixiang.yshop.framework.common.exception.ErrorCode;
/**
* Product 错误码枚举类
*
* <p>
* product 系统,使用 1-008-000-000 段
*/
public interface ErrorCodeConstants {

View File

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

View File

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

View File

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