mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 21:45:08 +08:00
查询运营商提现记录
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user