改造平台建店接口

This commit is contained in:
shuo.wang
2025-04-08 20:39:17 +08:00
parent e276cd8ef9
commit d82f99533b
9 changed files with 93 additions and 6 deletions

View File

@@ -21,4 +21,13 @@ public enum DownSystemTypeEnum {
public String getDesc() {
return desc;
}
public static DownSystemTypeEnum getByCode(Integer code){
for (DownSystemTypeEnum value : DownSystemTypeEnum.values()) {
if(value.getCode().equals(code)){
return value;
}
}
return null;
}
}