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

68 lines
1015 B
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 java.util.Date;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
/**
* 提现记录表
*/
@Getter
@Setter
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class ClearingWithdrawInfo {
/**
* 主键
*/
private Integer id;
/**
* 提现编号
*/
private String withdrawCode;
/**
* 提现状态(0-处理中1-已提现)
*/
private String withdrawStatus;
/**
* 申请时间
*/
private Date applicationTime;
/**
* 到账时间
*/
private Date arrivalTime;
/**
* 创建人
*/
private String createBy;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新人
*/
private String updateBy;
/**
* 更新时间
*/
private Date updateTime;
/**
* 删除标识0-正常1-删除)
*/
private String delFlag;
}