认证-参数项-控件校验 正整数改整数

This commit is contained in:
liyawei
2022-07-05 14:43:37 +08:00
parent 345ca85963
commit 89424f793f
3 changed files with 3 additions and 3 deletions
@@ -111,7 +111,7 @@ public class ParamsInfoEO implements Serializable {
private String controlType;
/**控件校验*/
@Excel(name = "控件校验", width = 15, replace = {"无_1","中文_2","整数_3","正浮点数_4","整数或小数_5","一位小数_6","两位小数_7","三位小数_8","四位小数_9"})
@Excel(name = "控件校验", width = 15, replace = {"无_1","中文_2","整数_3","正浮点数_4","整数或小数_5","一位小数_6","两位小数_7","三位小数_8","四位小数_9"})
@ApiModelProperty(value = "控件校验")
private String controlVerify;
@@ -13,7 +13,7 @@ import java.util.Map;
public enum ControlVerifyEnum {
NULL("","Null","1"),
CHINESE("中文","Chinese","2"),
POSITIVE_INTEGER("整数","Positive integer","3"),
POSITIVE_INTEGER("整数","Integer","3"),
POSITIVE_FLOAT("正浮点数","Positive float","4"),
INTEGER_DECIMAL("整数或小数","Integer decimal","5"),
DECIMAL_ONE("一位小数","Decimal one","6"),
@@ -94,7 +94,7 @@ public class ParamsInfoEnExport {
private String controlType;
/**控件校验*/
@Excel(name = "Control Verify", width = 15, replace = {"Null_1","Chinese_2","Positive integer_3","Positive float_4","Integer decimal_5","Decimal one_6","Decimal two_7","Decimal three_8","Decimal four_9"})
@Excel(name = "Control Verify", width = 15, replace = {"Null_1","Chinese_2","Integer_3","Positive float_4","Integer decimal_5","Decimal one_6","Decimal two_7","Decimal three_8","Decimal four_9"})
@ApiModelProperty(value = "控件校验")
private String controlVerify;