fix + 枚举,仓库数据等

This commit is contained in:
shuo.wang
2025-04-08 16:38:30 +08:00
parent a389e073c4
commit 80b5afe47f
20 changed files with 480 additions and 11 deletions

View File

@@ -0,0 +1,25 @@
package com.cool.store.enums;
/**
* @Author: WangShuo
* @Date: 2025/04/08/15:14
* @Version 1.0
* @注释:
*/
public enum ZxjpEnum {
XGJ_VICE_PRESIDENT("xgjVicePresident","新管家副总裁"),
DECLARE_GOODS_DATE("declareGoodsDate","报货日期");
private String code;
private String desc;
ZxjpEnum(String code, String desc) {
this.code = code;
this.desc = desc;
}
public String getCode() {
return code;
}
public String getDesc() {
return desc;
}
}