策略配置-模板修改&模板时间配置

This commit is contained in:
2025-07-12 18:51:23 +08:00
parent eafb0ec2c6
commit aa751464b4
19 changed files with 733 additions and 184 deletions

View File

@ -0,0 +1,30 @@
package com.xzzn.common.enums;
/**
* strategy模板-sdc限制
*
* @author xzzn
*/
public enum SdcLimitType
{
OFF("0", ""), ON("1", "");
private final String code;
private final String info;
SdcLimitType(String code, String info)
{
this.code = code;
this.info = info;
}
public String getCode()
{
return code;
}
public String getInfo()
{
return info;
}
}