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

Commit d2d72829 authored by 胡佳晨's avatar 胡佳晨

状态相关常量表

parent e50b76c1
package com.liquidnet.service.goblin.constant;
public class GoblinStatusConst {
/* ----------------------------------------------------------------- */
public enum OrderStatus {
ORDER_STATUS_1("1", "订单状态"),
;
private final String value;
private final String desc;
OrderStatus(String value, String desc) {
this.value = value;
this.desc = desc;
}
public String 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