mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 05:55:03 +08:00
68 lines
1015 B
Java
68 lines
1015 B
Java
|
|
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;
|
|||
|
|
}
|