查询运营商提现记录

This commit is contained in:
2023-09-19 17:05:16 +08:00
parent 42ad306647
commit 09e83e8b24
4 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
package com.jsowell.pile.vo.web;
import lombok.Getter;
import lombok.Setter;
/**
* 提现记录VO
*/
@Getter
@Setter
public class WithdrawInfoVO {
// 运营商id
private String merchantId;
// 提现编号
private String withdrawCode;
// 提现状态描述
private String statusDesc;
// 申请时间
private String applicationTime;
// 提现金额
private String cashAmt;
}