|
|
@ -16,8 +16,11 @@ public class CommonEnumUtil {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
public enum SOFT_TYPE {
|
|
|
|
public enum SOFT_TYPE {
|
|
|
|
IMPP(1, "IMPP", "IMPP平台"), CORE(2, "CORE", "i3业务平台"), WMS(3, "WMS", "仓库管理软件"), MES(4, "MES", "生产管理软件"),
|
|
|
|
IMPP(1, "impp-platform", "IMPP平台"),
|
|
|
|
CENTER(99,"CENTER","注册服务中心");
|
|
|
|
CORE(2, "i3core", "i3业务平台"),
|
|
|
|
|
|
|
|
WMS(3, "i3wms", "仓库管理软件"),
|
|
|
|
|
|
|
|
MES(4, "i3mes", "生产管理软件"),
|
|
|
|
|
|
|
|
CENTER(99,"regist-center","注册服务中心");
|
|
|
|
|
|
|
|
|
|
|
|
public int value;
|
|
|
|
public int value;
|
|
|
|
public String code;
|
|
|
|
public String code;
|
|
|
|