Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/domain/ClearingWithdrawInfo.java

91 lines
1.3 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.jsowell.pile.domain;
import lombok.*;
import java.math.BigDecimal;
import java.util.Date;
/**
* 提现记录表
*/
@Getter
@Setter
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class ClearingWithdrawInfo {
/**
* 主键
*/
private Integer id;
/**
* 商户id
*/
private String merchantId;
/**
* 交易单号
*/
private String orderNo;
/**
* 提现编号
*/
private String withdrawCode;
/**
* 提现状态(0-处理中1-已提现)
*/
private String withdrawStatus;
/**
* 提现金额
*/
private BigDecimal withdrawAmt;
/**
* 提现手续费
*/
private BigDecimal feeAmt;
/**
* 到账金额
*/
private BigDecimal creditedAmt;
/**
* 申请时间
*/
private Date applicationTime;
/**
* 到账时间
*/
private Date arrivalTime;
/**
* 创建人
*/
private String createBy;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新人
*/
private String updateBy;
/**
* 更新时间
*/
private Date updateTime;
/**
* 删除标识0-正常1-删除)
*/
private String delFlag;
}