|
@@ -25,22 +25,23 @@ public class TransferRulerParam {
|
|
* 单笔最小提现金额
|
|
* 单笔最小提现金额
|
|
*/
|
|
*/
|
|
@ApiModelProperty("单笔最小提现金额")
|
|
@ApiModelProperty("单笔最小提现金额")
|
|
- @Max(value = 200000, message = "单笔提现金额不得超过 2000")
|
|
|
|
- @Min(value = 30, message = "单笔提现金额不得低于 3")
|
|
|
|
|
|
+ @Max(value = 20000, message = "单笔提现金额不得超过 200")
|
|
|
|
+ @Min(value = 30, message = "单笔提现金额不得低于 0.3")
|
|
private BigDecimal minTotal = BigDecimal.ZERO;
|
|
private BigDecimal minTotal = BigDecimal.ZERO;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 单笔最大提现金额
|
|
* 单笔最大提现金额
|
|
*/
|
|
*/
|
|
@ApiModelProperty("单笔最大提现金额")
|
|
@ApiModelProperty("单笔最大提现金额")
|
|
- @Max(value = 200000, message = "单笔提现金额不得超过 2000")
|
|
|
|
- @Max(value = 30, message = "单笔提现金额不得低于3")
|
|
|
|
|
|
+ @Max(value = 20000, message = "单笔提现金额不得超过 200")
|
|
|
|
+ @Min(value = 30, message = "单笔提现金额不得低于0.3")
|
|
private BigDecimal maxTotal = BigDecimal.ZERO;
|
|
private BigDecimal maxTotal = BigDecimal.ZERO;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 单日最大转账金额
|
|
* 单日最大转账金额
|
|
*/
|
|
*/
|
|
@ApiModelProperty("单日最大转账金额")
|
|
@ApiModelProperty("单日最大转账金额")
|
|
|
|
+ @Max(value = 2000000, message = "单日最大转账金额不得超过20000")
|
|
private BigDecimal dayMaxTotal = BigDecimal.ZERO;
|
|
private BigDecimal dayMaxTotal = BigDecimal.ZERO;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -53,8 +54,6 @@ public class TransferRulerParam {
|
|
* 提现次数
|
|
* 提现次数
|
|
*/
|
|
*/
|
|
@ApiModelProperty("提现次数")
|
|
@ApiModelProperty("提现次数")
|
|
- @Max(value = 2000, message = "单日最大转账金额不得超过 100000")
|
|
|
|
-
|
|
|
|
private Integer size;
|
|
private Integer size;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -68,7 +67,7 @@ public class TransferRulerParam {
|
|
*/
|
|
*/
|
|
@ApiModelProperty("每月开始号数")
|
|
@ApiModelProperty("每月开始号数")
|
|
@Max(value = 31, message = "超出月份天数")
|
|
@Max(value = 31, message = "超出月份天数")
|
|
- @Max(value = 1, message = "日数最小为1")
|
|
|
|
|
|
+ @Min(value = 1, message = "日数最小为1")
|
|
private Integer startDay;
|
|
private Integer startDay;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -76,30 +75,30 @@ public class TransferRulerParam {
|
|
*/
|
|
*/
|
|
@ApiModelProperty("每月结束号数")
|
|
@ApiModelProperty("每月结束号数")
|
|
@Max(value = 31, message = "超出月份天数")
|
|
@Max(value = 31, message = "超出月份天数")
|
|
- @Max(value = 1, message = "日数最小为1")
|
|
|
|
|
|
+ @Min(value = 1, message = "日数最小为1")
|
|
private Integer endDay;
|
|
private Integer endDay;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 每日开始时
|
|
* 每日开始时
|
|
*/
|
|
*/
|
|
@ApiModelProperty("每日开始时")
|
|
@ApiModelProperty("每日开始时")
|
|
- @Max(value = 23, message = "不过超过23时")
|
|
|
|
- @Max(value = 0, message = "不得小于0时")
|
|
|
|
|
|
+ @Max(value = 24, message = "不过超过23时")
|
|
|
|
+ @Min(value = 0, message = "不得小于0时")
|
|
private Integer startHour;
|
|
private Integer startHour;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 每日开始分
|
|
* 每日开始分
|
|
*/
|
|
*/
|
|
- @Max(value = 23, message = "不过超过23时")
|
|
|
|
- @Max(value = 0, message = "不得小于0时")
|
|
|
|
|
|
+ @Max(value = 59, message = "不过超过59分")
|
|
|
|
+ @Min(value = 0, message = "不得小于0分")
|
|
@ApiModelProperty("每日开始分")
|
|
@ApiModelProperty("每日开始分")
|
|
private Integer startMinute;
|
|
private Integer startMinute;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 每日结束时
|
|
* 每日结束时
|
|
*/
|
|
*/
|
|
- @Max(value = 59, message = "不过超过59分")
|
|
|
|
- @Max(value = 0, message = "不得小于0分")
|
|
|
|
|
|
+ @Max(value = 24, message = "不过超过24时")
|
|
|
|
+ @Min(value = 0, message = "不得小于0时")
|
|
@ApiModelProperty("每日结束时")
|
|
@ApiModelProperty("每日结束时")
|
|
private Integer endHour;
|
|
private Integer endHour;
|
|
|
|
|
|
@@ -107,7 +106,7 @@ public class TransferRulerParam {
|
|
* 每日结束分
|
|
* 每日结束分
|
|
*/
|
|
*/
|
|
@Max(value = 59, message = "不过超过59分")
|
|
@Max(value = 59, message = "不过超过59分")
|
|
- @Max(value = 0, message = "不得小于0分")
|
|
|
|
|
|
+ @Min(value = 0, message = "不得小于0分")
|
|
@ApiModelProperty("每日结束分")
|
|
@ApiModelProperty("每日结束分")
|
|
private Integer endMinute;
|
|
private Integer endMinute;
|
|
}
|
|
}
|