通话逻辑

This commit is contained in:
张良(004796)
2023-12-28 11:42:27 +08:00
parent c5e55374c9
commit f337f57df5
22 changed files with 643 additions and 9 deletions

View File

@@ -0,0 +1,31 @@
package com.ruoyi.cai.enums;
import lombok.Getter;
/**
* 系统动态配置枚举
* <p>created on 2022/8/18 17:15</p>
*
* @author ZL
*/
public enum SystemConfigEnum {
GUARD_PRICE("1314", "守护价格"),
;
@Getter
private final String defaultValue;
@Getter
private final String desc;
SystemConfigEnum(String defaultValue, String desc) {
this.defaultValue = defaultValue;
this.desc = desc;
}
public String getKey() {
return this.name();
}
}