记得上下班打卡 | git大法好,push需谨慎

Commit 4732ee19 authored by 胡佳晨's avatar 胡佳晨

状态 常量提交

parent 26a8c1e7
......@@ -2,6 +2,30 @@ package com.liquidnet.service.goblin.constant;
public class GoblinStatusConst {
/* ----------------------------------------------------------------- */
public enum CommonStatus {
COMMON_LIMIT_UN(0,"不限购"),
COMMON_TYPE_ALL(0,"购买条件-全部用户"),
COMMON_TYPE_MEMBER(1,"购买条件-会员用户"),
COMMON_TYPE_CAN(2,"购买条件-指定用户"),
;
private final int value;
private final String desc;
CommonStatus(int value, String desc) {
this.value = value;
this.desc = desc;
}
public int getValue() {
return value;
}
public String getDesc() {
return desc;
}
}
public enum OrderStatus {
ORDER_STATUS_1("1", "订单状态"),
;
......@@ -23,6 +47,27 @@ public class GoblinStatusConst {
}
}
public enum MarketingStatus {
SELF_TYPE_ZHENGZAI(1, "正在下单"),
;
private final int value;
private final String desc;
MarketingStatus(int value, String desc) {
this.value = value;
this.desc = desc;
}
public int getValue() {
return value;
}
public String getDesc() {
return desc;
}
}
/* ----------------------------------------------------------------- */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment