Commit 31c09a14 by guojuxing

提现接口添加字段:提现单号

parent 38b95da0
...@@ -84,6 +84,7 @@ public class CashWithdrawalDTO implements Serializable{ ...@@ -84,6 +84,7 @@ public class CashWithdrawalDTO implements Serializable{
/** /**
* *
*/ */
@NotNull(message = "商户ID不能为空", groups = {CashWithdrawal.class})
private Integer enterpriseId; private Integer enterpriseId;
/** /**
...@@ -162,6 +163,12 @@ public class CashWithdrawalDTO implements Serializable{ ...@@ -162,6 +163,12 @@ public class CashWithdrawalDTO implements Serializable{
*/ */
private Date updateTime; private Date updateTime;
/**
* 提现单ID
*/
@NotBlank(message = "提现单号不能为空", groups = {CashWithdrawal.class})
private String cashProvider;
public Integer getCashWithdrawalId() { public Integer getCashWithdrawalId() {
return cashWithdrawalId; return cashWithdrawalId;
} }
...@@ -369,4 +376,12 @@ public class CashWithdrawalDTO implements Serializable{ ...@@ -369,4 +376,12 @@ public class CashWithdrawalDTO implements Serializable{
public void setPayAccount(String payAccount) { public void setPayAccount(String payAccount) {
this.payAccount = payAccount; this.payAccount = payAccount;
} }
public String getCashProvider() {
return cashProvider;
}
public void setCashProvider(String cashProvider) {
this.cashProvider = cashProvider;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment