修改消息
This commit is contained in:
parent
6b6ae96610
commit
43b93a8948
|
|
@ -14,13 +14,13 @@ public class AccRechargeForAppDTO {
|
|||
) Integer payType;
|
||||
@ApiModelProperty("充值金额")
|
||||
private @NotNull(
|
||||
message = "{充值金额不能为空}"
|
||||
message = "{acc_operation_amount_null_exception}"
|
||||
) @Max(
|
||||
value = 10000000L,
|
||||
message = "{最大充值金额不能超过10000000元}"
|
||||
message = "{acc_operation_amount_max_exception}"
|
||||
) @Min(
|
||||
value = 1L,
|
||||
message = "最少充值金额不能少于1分"
|
||||
message = "{acc_operation_amount_min_exception}"
|
||||
) BigDecimal rechargeAmount;
|
||||
@ApiModelProperty(
|
||||
value = "openid",
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import javax.validation.constraints.NotNull;
|
|||
public class AppRechargeResultDTO {
|
||||
@ApiModelProperty("账户交易Id")
|
||||
private @NotNull(
|
||||
message = "{账户交易Id不能为空}"
|
||||
message = "{acc_update_param_exception}"
|
||||
) Long accTradeId;
|
||||
|
||||
public Long getAccTradeId() {
|
||||
|
|
|
|||
Reference in New Issue