|
package com.ishop.model.po;
|
|
import com.fasterxml.jackson.annotation.JsonAutoDetect;
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import com.walker.jdbc.BasePo;
|
|
/**
|
* 表名:EB_USER_CLOSING *
|
* @author genrator
|
*/
|
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
|
public class EbUserClosing extends BasePo<EbUserClosing> {
|
// 序列化版本号
|
private static final long serialVersionUID = 1L;
|
|
// 主键
|
private Long id = null;
|
@JsonIgnore
|
protected boolean isset_id = false;
|
|
// 属性列表
|
private String closingNo = null;
|
@JsonIgnore
|
protected boolean isset_closingNo = false;
|
|
private Long uid = null;
|
@JsonIgnore
|
protected boolean isset_uid = false;
|
|
private String closingType = null;
|
@JsonIgnore
|
protected boolean isset_closingType = false;
|
|
private String cardholder = null;
|
@JsonIgnore
|
protected boolean isset_cardholder = false;
|
|
private String bankCardNo = null;
|
@JsonIgnore
|
protected boolean isset_bankCardNo = false;
|
|
private String bankName = null;
|
@JsonIgnore
|
protected boolean isset_bankName = false;
|
|
private String bankAddress = null;
|
@JsonIgnore
|
protected boolean isset_bankAddress = false;
|
|
private String alipayAccount = null;
|
@JsonIgnore
|
protected boolean isset_alipayAccount = false;
|
|
private String wechatNo = null;
|
@JsonIgnore
|
protected boolean isset_wechatNo = false;
|
|
private String paymentCode = null;
|
@JsonIgnore
|
protected boolean isset_paymentCode = false;
|
|
private Double closingPrice = null;
|
@JsonIgnore
|
protected boolean isset_closingPrice = false;
|
|
private Double balance = null;
|
@JsonIgnore
|
protected boolean isset_balance = false;
|
|
private String mark = null;
|
@JsonIgnore
|
protected boolean isset_mark = false;
|
|
private Integer auditStatus = null;
|
@JsonIgnore
|
protected boolean isset_auditStatus = false;
|
|
private String refusalReason = null;
|
@JsonIgnore
|
protected boolean isset_refusalReason = false;
|
|
private Long auditId = null;
|
@JsonIgnore
|
protected boolean isset_auditId = false;
|
|
private Long auditTime = null;
|
@JsonIgnore
|
protected boolean isset_auditTime = false;
|
|
private Integer accountStatus = null;
|
@JsonIgnore
|
protected boolean isset_accountStatus = false;
|
|
private String closingProof = null;
|
@JsonIgnore
|
protected boolean isset_closingProof = false;
|
|
private Long closingTime = null;
|
@JsonIgnore
|
protected boolean isset_closingTime = false;
|
|
private Long createTime = null;
|
@JsonIgnore
|
protected boolean isset_createTime = false;
|
|
private Long updateTime = null;
|
@JsonIgnore
|
protected boolean isset_updateTime = false;
|
|
private String realName = null;
|
@JsonIgnore
|
protected boolean isset_realName = false;
|
|
/**
|
* 默认构造函数
|
*/
|
public EbUserClosing() {
|
}
|
|
/**
|
* 根据主键构造对象
|
*/
|
public EbUserClosing(Long id) {
|
this.setId(id);
|
}
|
|
/**
|
* 设置主键值
|
*/
|
@Override
|
public void setPkValue(Object value) {
|
this.setId((Long) value);
|
}
|
|
public Long getId() {
|
return this.id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
this.isset_id = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyId() {
|
return this.id == null;
|
}
|
|
public String getClosingNo() {
|
return this.closingNo;
|
}
|
|
public void setClosingNo(String closingNo) {
|
this.closingNo = closingNo;
|
this.isset_closingNo = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyClosingNo() {
|
return this.closingNo == null || this.closingNo.length() == 0;
|
}
|
|
public Long getUid() {
|
return this.uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
this.isset_uid = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyUid() {
|
return this.uid == null;
|
}
|
|
public String getClosingType() {
|
return this.closingType;
|
}
|
|
public void setClosingType(String closingType) {
|
this.closingType = closingType;
|
this.isset_closingType = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyClosingType() {
|
return this.closingType == null || this.closingType.length() == 0;
|
}
|
|
public String getCardholder() {
|
return this.cardholder;
|
}
|
|
public void setCardholder(String cardholder) {
|
this.cardholder = cardholder;
|
this.isset_cardholder = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyCardholder() {
|
return this.cardholder == null || this.cardholder.length() == 0;
|
}
|
|
public String getBankCardNo() {
|
return this.bankCardNo;
|
}
|
|
public void setBankCardNo(String bankCardNo) {
|
this.bankCardNo = bankCardNo;
|
this.isset_bankCardNo = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyBankCardNo() {
|
return this.bankCardNo == null || this.bankCardNo.length() == 0;
|
}
|
|
public String getBankName() {
|
return this.bankName;
|
}
|
|
public void setBankName(String bankName) {
|
this.bankName = bankName;
|
this.isset_bankName = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyBankName() {
|
return this.bankName == null || this.bankName.length() == 0;
|
}
|
|
public String getBankAddress() {
|
return this.bankAddress;
|
}
|
|
public void setBankAddress(String bankAddress) {
|
this.bankAddress = bankAddress;
|
this.isset_bankAddress = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyBankAddress() {
|
return this.bankAddress == null || this.bankAddress.length() == 0;
|
}
|
|
public String getAlipayAccount() {
|
return this.alipayAccount;
|
}
|
|
public void setAlipayAccount(String alipayAccount) {
|
this.alipayAccount = alipayAccount;
|
this.isset_alipayAccount = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyAlipayAccount() {
|
return this.alipayAccount == null || this.alipayAccount.length() == 0;
|
}
|
|
public String getWechatNo() {
|
return this.wechatNo;
|
}
|
|
public void setWechatNo(String wechatNo) {
|
this.wechatNo = wechatNo;
|
this.isset_wechatNo = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyWechatNo() {
|
return this.wechatNo == null || this.wechatNo.length() == 0;
|
}
|
|
public String getPaymentCode() {
|
return this.paymentCode;
|
}
|
|
public void setPaymentCode(String paymentCode) {
|
this.paymentCode = paymentCode;
|
this.isset_paymentCode = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyPaymentCode() {
|
return this.paymentCode == null || this.paymentCode.length() == 0;
|
}
|
|
public Double getClosingPrice() {
|
return this.closingPrice;
|
}
|
|
public void setClosingPrice(Double closingPrice) {
|
this.closingPrice = closingPrice;
|
this.isset_closingPrice = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyClosingPrice() {
|
return this.closingPrice == null;
|
}
|
|
public Double getBalance() {
|
return this.balance;
|
}
|
|
public void setBalance(Double balance) {
|
this.balance = balance;
|
this.isset_balance = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyBalance() {
|
return this.balance == null;
|
}
|
|
public String getMark() {
|
return this.mark;
|
}
|
|
public void setMark(String mark) {
|
this.mark = mark;
|
this.isset_mark = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyMark() {
|
return this.mark == null || this.mark.length() == 0;
|
}
|
|
public Integer getAuditStatus() {
|
return this.auditStatus;
|
}
|
|
public void setAuditStatus(Integer auditStatus) {
|
this.auditStatus = auditStatus;
|
this.isset_auditStatus = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyAuditStatus() {
|
return this.auditStatus == null;
|
}
|
|
public String getRefusalReason() {
|
return this.refusalReason;
|
}
|
|
public void setRefusalReason(String refusalReason) {
|
this.refusalReason = refusalReason;
|
this.isset_refusalReason = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyRefusalReason() {
|
return this.refusalReason == null || this.refusalReason.length() == 0;
|
}
|
|
public Long getAuditId() {
|
return this.auditId;
|
}
|
|
public void setAuditId(Long auditId) {
|
this.auditId = auditId;
|
this.isset_auditId = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyAuditId() {
|
return this.auditId == null;
|
}
|
|
public Long getAuditTime() {
|
return this.auditTime;
|
}
|
|
public void setAuditTime(Long auditTime) {
|
this.auditTime = auditTime;
|
this.isset_auditTime = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyAuditTime() {
|
return this.auditTime == null;
|
}
|
|
public Integer getAccountStatus() {
|
return this.accountStatus;
|
}
|
|
public void setAccountStatus(Integer accountStatus) {
|
this.accountStatus = accountStatus;
|
this.isset_accountStatus = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyAccountStatus() {
|
return this.accountStatus == null;
|
}
|
|
public String getClosingProof() {
|
return this.closingProof;
|
}
|
|
public void setClosingProof(String closingProof) {
|
this.closingProof = closingProof;
|
this.isset_closingProof = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyClosingProof() {
|
return this.closingProof == null || this.closingProof.length() == 0;
|
}
|
|
public Long getClosingTime() {
|
return this.closingTime;
|
}
|
|
public void setClosingTime(Long closingTime) {
|
this.closingTime = closingTime;
|
this.isset_closingTime = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyClosingTime() {
|
return this.closingTime == null;
|
}
|
|
public Long getCreateTime() {
|
return this.createTime;
|
}
|
|
public void setCreateTime(Long createTime) {
|
this.createTime = createTime;
|
this.isset_createTime = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyCreateTime() {
|
return this.createTime == null;
|
}
|
|
public Long getUpdateTime() {
|
return this.updateTime;
|
}
|
|
public void setUpdateTime(Long updateTime) {
|
this.updateTime = updateTime;
|
this.isset_updateTime = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyUpdateTime() {
|
return this.updateTime == null;
|
}
|
|
public String getRealName() {
|
return this.realName;
|
}
|
|
public void setRealName(String realName) {
|
this.realName = realName;
|
this.isset_realName = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyRealName() {
|
return this.realName == null || this.realName.length() == 0;
|
}
|
|
/**
|
* 重写 toString() 方法
|
*/
|
@Override
|
public String toString() {
|
return new StringBuilder()
|
.append("id=").append(this.id)
|
.append("closingNo=").append(this.closingNo)
|
.append("uid=").append(this.uid)
|
.append("closingType=").append(this.closingType)
|
.append("cardholder=").append(this.cardholder)
|
.append("bankCardNo=").append(this.bankCardNo)
|
.append("bankName=").append(this.bankName)
|
.append("bankAddress=").append(this.bankAddress)
|
.append("alipayAccount=").append(this.alipayAccount)
|
.append("wechatNo=").append(this.wechatNo)
|
.append("paymentCode=").append(this.paymentCode)
|
.append("closingPrice=").append(this.closingPrice)
|
.append("balance=").append(this.balance)
|
.append("mark=").append(this.mark)
|
.append("auditStatus=").append(this.auditStatus)
|
.append("refusalReason=").append(this.refusalReason)
|
.append("auditId=").append(this.auditId)
|
.append("auditTime=").append(this.auditTime)
|
.append("accountStatus=").append(this.accountStatus)
|
.append("closingProof=").append(this.closingProof)
|
.append("closingTime=").append(this.closingTime)
|
.append("createTime=").append(this.createTime)
|
.append("updateTime=").append(this.updateTime)
|
.append("realName=").append(this.realName)
|
.toString();
|
}
|
|
/**
|
* 克隆
|
*/
|
public EbUserClosing $clone() {
|
EbUserClosing eb_user_closing = new EbUserClosing();
|
|
// 数据库名称
|
//eb_user_closing.setDatabaseName_(this.getDatabaseName_());
|
|
// 主键
|
if (this.isset_id) {
|
eb_user_closing.setId(this.getId());
|
}
|
// 普通属性
|
if (this.isset_closingNo) {
|
eb_user_closing.setClosingNo(this.getClosingNo());
|
}
|
if (this.isset_uid) {
|
eb_user_closing.setUid(this.getUid());
|
}
|
if (this.isset_closingType) {
|
eb_user_closing.setClosingType(this.getClosingType());
|
}
|
if (this.isset_cardholder) {
|
eb_user_closing.setCardholder(this.getCardholder());
|
}
|
if (this.isset_bankCardNo) {
|
eb_user_closing.setBankCardNo(this.getBankCardNo());
|
}
|
if (this.isset_bankName) {
|
eb_user_closing.setBankName(this.getBankName());
|
}
|
if (this.isset_bankAddress) {
|
eb_user_closing.setBankAddress(this.getBankAddress());
|
}
|
if (this.isset_alipayAccount) {
|
eb_user_closing.setAlipayAccount(this.getAlipayAccount());
|
}
|
if (this.isset_wechatNo) {
|
eb_user_closing.setWechatNo(this.getWechatNo());
|
}
|
if (this.isset_paymentCode) {
|
eb_user_closing.setPaymentCode(this.getPaymentCode());
|
}
|
if (this.isset_closingPrice) {
|
eb_user_closing.setClosingPrice(this.getClosingPrice());
|
}
|
if (this.isset_balance) {
|
eb_user_closing.setBalance(this.getBalance());
|
}
|
if (this.isset_mark) {
|
eb_user_closing.setMark(this.getMark());
|
}
|
if (this.isset_auditStatus) {
|
eb_user_closing.setAuditStatus(this.getAuditStatus());
|
}
|
if (this.isset_refusalReason) {
|
eb_user_closing.setRefusalReason(this.getRefusalReason());
|
}
|
if (this.isset_auditId) {
|
eb_user_closing.setAuditId(this.getAuditId());
|
}
|
if (this.isset_auditTime) {
|
eb_user_closing.setAuditTime(this.getAuditTime());
|
}
|
if (this.isset_accountStatus) {
|
eb_user_closing.setAccountStatus(this.getAccountStatus());
|
}
|
if (this.isset_closingProof) {
|
eb_user_closing.setClosingProof(this.getClosingProof());
|
}
|
if (this.isset_closingTime) {
|
eb_user_closing.setClosingTime(this.getClosingTime());
|
}
|
if (this.isset_createTime) {
|
eb_user_closing.setCreateTime(this.getCreateTime());
|
}
|
if (this.isset_updateTime) {
|
eb_user_closing.setUpdateTime(this.getUpdateTime());
|
}
|
if (this.isset_realName) {
|
eb_user_closing.setRealName(this.getRealName());
|
}
|
return eb_user_closing;
|
}
|
}
|