|
@@ -21,9 +21,10 @@ public class UserWithdrawalVo extends UserWithdrawal {
|
|
|
private String withdrawaUser;
|
|
|
@ApiModelProperty("结算手机号 ")
|
|
|
private String phone;
|
|
|
-
|
|
|
@ApiModelProperty("审核人 ")
|
|
|
private String verifyUser;
|
|
|
+ @ApiModelProperty("提现状态 DOING 审核中 FAILED 未通过 SUCCESS 提现成功 ")
|
|
|
+ private String withdrawStatus;
|
|
|
|
|
|
public String getBankName() {
|
|
|
return bankName;
|
|
@@ -72,4 +73,12 @@ public class UserWithdrawalVo extends UserWithdrawal {
|
|
|
public void setRealName(String realName) {
|
|
|
this.realName = realName;
|
|
|
}
|
|
|
+
|
|
|
+ public String getWithdrawStatus() {
|
|
|
+ return withdrawStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWithdrawStatus(String withdrawStatus) {
|
|
|
+ this.withdrawStatus = withdrawStatus;
|
|
|
+ }
|
|
|
}
|