package project.c2c;
|
|
import java.util.Date;
|
|
import javax.persistence.Column;
|
import javax.persistence.Table;
|
|
import kernel.bo.EntityObject;
|
|
@Table(name="T_C2C_USER_PARAM_BASE_SET")
|
public class C2cUserParamBaseSet extends EntityObject {
|
|
private static final long serialVersionUID = -2656649193701685280L;
|
|
/**
|
* 承兑商用户PARTY_ID
|
*/
|
@Column(name="C2C_USER_PARTY_ID")
|
private String c2cUserPartyId;
|
|
/**
|
* 30日成单数
|
*/
|
@Column(name="THIRTY_DAYS_ORDER")
|
private int thirtyDaysOrder;
|
|
/**
|
* 30日成单率
|
*/
|
@Column(name="THIRTY_DAYS_ORDER_RATIO")
|
private double thirtyDaysOrderRatio;
|
|
/**
|
* 30日平均放行时间
|
*/
|
@Column(name="THIRTY_DAYS_PASS_AVERAGE_TIME")
|
private int thirtyDaysPassAverageTime;
|
|
/**
|
* 30日平均付款时间
|
*/
|
@Column(name="THIRTY_DAYS_PAY_AVERAGE_TIME")
|
private int thirtyDaysPayAverageTime;
|
|
/**
|
* 30日交易量
|
*/
|
@Column(name="THIRTY_DAYS_AMOUNT")
|
private double thirtyDaysAmount;
|
|
/**
|
* 买交易量
|
*/
|
@Column(name="BUY_AMOUNT")
|
private double buyAmount;
|
|
/**
|
* 卖交易量
|
*/
|
@Column(name="SELL_AMOUNT")
|
private double sellAmount;
|
|
/**
|
* 总交易量
|
*/
|
@Column(name="TOTAL_AMOUNT")
|
private double totalAmount;
|
|
/**
|
* 账号创建天数
|
*/
|
@Column(name="ACCOUNT_CREATE_DAYS")
|
private int accountCreateDays;
|
|
/**
|
* 首次交易至今天数
|
*/
|
@Column(name="FIRST_EXCHANGE_DAYS")
|
private int firstExchangeDays;
|
|
/**
|
* 交易人数
|
*/
|
@Column(name="EXCHANGE_USERS")
|
private int exchangeUsers;
|
|
/**
|
* 买成单数
|
*/
|
@Column(name="BUY_SUCCESS_ORDERS")
|
private int buySuccessOrders;
|
|
/**
|
* 卖成单数
|
*/
|
@Column(name="SELL_SUCCESS_ORDERS")
|
private int sellSuccessOrders;
|
|
/**
|
* 总成单数
|
*/
|
@Column(name="TOTAL_SUCCESS_ORDERS")
|
private int totalSuccessOrders;
|
|
/**
|
* 好评数
|
*/
|
@Column(name="APPRAISE_GOOD")
|
private int appraiseGood;
|
|
/**
|
* 差评数
|
*/
|
@Column(name="APPRAISE_BAD")
|
private int appraiseBad;
|
|
/**
|
* 订单邮件通知:0关闭/1打开
|
*/
|
@Column(name="ORDER_MAIL_NOTICE_OPEN")
|
private int orderMailNoticeOpen;
|
|
/**
|
* 订单短信通知:0关闭/1打开
|
*/
|
@Column(name="ORDER_SMS_NOTICE_OPEN")
|
private int orderSmsNoticeOpen;
|
|
/**
|
* 订单APP通知:0关闭/1打开
|
*/
|
@Column(name="ORDER_APP_NOTICE_OPEN")
|
private int orderAppNoticeOpen;
|
|
/**
|
* 申诉邮件通知:0关闭/1打开
|
*/
|
@Column(name="APPEAL_MAIL_NOTICE_OPEN")
|
private int appealMailNoticeOpen;
|
|
/**
|
* 申诉短信通知:0关闭/1打开
|
*/
|
@Column(name="APPEAL_SMS_NOTICE_OPEN")
|
private int appealSmsNoticeOpen;
|
|
/**
|
* 申诉APP通知:0关闭/1打开
|
*/
|
@Column(name="APPEAL_APP_NOTICE_OPEN")
|
private int appealAppNoticeOpen;
|
|
/**
|
* 聊天APP通知:0关闭/1打开
|
*/
|
@Column(name="CHAT_APP_NOTICE_OPEN")
|
private int chatAppNoticeOpen;
|
|
/**
|
* 安全邮件通知:0关闭/1打开
|
*/
|
@Column(name="SECURITY_MAIL_NOTICE_OPEN")
|
private int securityMailNoticeOpen;
|
|
/**
|
* 安全短信通知:0关闭/1打开
|
*/
|
@Column(name="SECURITY_SMS_NOTICE_OPEN")
|
private int securitySmsNoticeOpen;
|
|
/**
|
* 安全APP通知:0关闭/1打开
|
*/
|
@Column(name="SECURITY_APP_NOTICE_OPEN")
|
private int securityAppNoticeOpen;
|
|
/**
|
* 手机验证:N未验证/Y已验证
|
*/
|
@Column(name="PHONE_AUTHORITY")
|
private String phoneAuthority;
|
|
/**
|
* 邮箱验证:N未验证/Y已验证
|
*/
|
@Column(name="EMAIL_AUTHORITY")
|
private String emailAuthority;
|
|
/**
|
* 身份认证:N未验证/Y已验证
|
*/
|
@Column(name="KYC_AUTHORITY")
|
private String kycAuthority;
|
|
/**
|
* 高级认证:N未验证/Y已验证
|
*/
|
@Column(name="KYC_HIGHLEVEL_AUTHORITY")
|
private String kycHighlevelAuthority;
|
|
/**
|
* 创建时间
|
*/
|
@Column(name="CREATE_TIME")
|
private Date createTime;
|
|
/**
|
* 更新时间
|
*/
|
@Column(name="UPDATE_TIME")
|
private Date updateTime;
|
|
public String getC2cUserPartyId() {
|
return c2cUserPartyId;
|
}
|
|
public void setC2cUserPartyId(String c2cUserPartyId) {
|
this.c2cUserPartyId = c2cUserPartyId;
|
}
|
|
public int getThirtyDaysOrder() {
|
return thirtyDaysOrder;
|
}
|
|
public void setThirtyDaysOrder(int thirtyDaysOrder) {
|
this.thirtyDaysOrder = thirtyDaysOrder;
|
}
|
|
public double getThirtyDaysOrderRatio() {
|
return thirtyDaysOrderRatio;
|
}
|
|
public void setThirtyDaysOrderRatio(double thirtyDaysOrderRatio) {
|
this.thirtyDaysOrderRatio = thirtyDaysOrderRatio;
|
}
|
|
public int getThirtyDaysPassAverageTime() {
|
return thirtyDaysPassAverageTime;
|
}
|
|
public void setThirtyDaysPassAverageTime(int thirtyDaysPassAverageTime) {
|
this.thirtyDaysPassAverageTime = thirtyDaysPassAverageTime;
|
}
|
|
public int getThirtyDaysPayAverageTime() {
|
return thirtyDaysPayAverageTime;
|
}
|
|
public void setThirtyDaysPayAverageTime(int thirtyDaysPayAverageTime) {
|
this.thirtyDaysPayAverageTime = thirtyDaysPayAverageTime;
|
}
|
|
public double getThirtyDaysAmount() {
|
return thirtyDaysAmount;
|
}
|
|
public void setThirtyDaysAmount(double thirtyDaysAmount) {
|
this.thirtyDaysAmount = thirtyDaysAmount;
|
}
|
|
public double getBuyAmount() {
|
return buyAmount;
|
}
|
|
public void setBuyAmount(double buyAmount) {
|
this.buyAmount = buyAmount;
|
}
|
|
public double getSellAmount() {
|
return sellAmount;
|
}
|
|
public void setSellAmount(double sellAmount) {
|
this.sellAmount = sellAmount;
|
}
|
|
public double getTotalAmount() {
|
return totalAmount;
|
}
|
|
public void setTotalAmount(double totalAmount) {
|
this.totalAmount = totalAmount;
|
}
|
|
public int getAccountCreateDays() {
|
return accountCreateDays;
|
}
|
|
public void setAccountCreateDays(int accountCreateDays) {
|
this.accountCreateDays = accountCreateDays;
|
}
|
|
public int getFirstExchangeDays() {
|
return firstExchangeDays;
|
}
|
|
public void setFirstExchangeDays(int firstExchangeDays) {
|
this.firstExchangeDays = firstExchangeDays;
|
}
|
|
public int getExchangeUsers() {
|
return exchangeUsers;
|
}
|
|
public void setExchangeUsers(int exchangeUsers) {
|
this.exchangeUsers = exchangeUsers;
|
}
|
|
public int getBuySuccessOrders() {
|
return buySuccessOrders;
|
}
|
|
public void setBuySuccessOrders(int buySuccessOrders) {
|
this.buySuccessOrders = buySuccessOrders;
|
}
|
|
public int getSellSuccessOrders() {
|
return sellSuccessOrders;
|
}
|
|
public void setSellSuccessOrders(int sellSuccessOrders) {
|
this.sellSuccessOrders = sellSuccessOrders;
|
}
|
|
public int getTotalSuccessOrders() {
|
return totalSuccessOrders;
|
}
|
|
public void setTotalSuccessOrders(int totalSuccessOrders) {
|
this.totalSuccessOrders = totalSuccessOrders;
|
}
|
|
public int getAppraiseGood() {
|
return appraiseGood;
|
}
|
|
public void setAppraiseGood(int appraiseGood) {
|
this.appraiseGood = appraiseGood;
|
}
|
|
public int getAppraiseBad() {
|
return appraiseBad;
|
}
|
|
public void setAppraiseBad(int appraiseBad) {
|
this.appraiseBad = appraiseBad;
|
}
|
|
public int getOrderMailNoticeOpen() {
|
return orderMailNoticeOpen;
|
}
|
|
public void setOrderMailNoticeOpen(int orderMailNoticeOpen) {
|
this.orderMailNoticeOpen = orderMailNoticeOpen;
|
}
|
|
public int getOrderSmsNoticeOpen() {
|
return orderSmsNoticeOpen;
|
}
|
|
public void setOrderSmsNoticeOpen(int orderSmsNoticeOpen) {
|
this.orderSmsNoticeOpen = orderSmsNoticeOpen;
|
}
|
|
public int getOrderAppNoticeOpen() {
|
return orderAppNoticeOpen;
|
}
|
|
public void setOrderAppNoticeOpen(int orderAppNoticeOpen) {
|
this.orderAppNoticeOpen = orderAppNoticeOpen;
|
}
|
|
public int getAppealMailNoticeOpen() {
|
return appealMailNoticeOpen;
|
}
|
|
public void setAppealMailNoticeOpen(int appealMailNoticeOpen) {
|
this.appealMailNoticeOpen = appealMailNoticeOpen;
|
}
|
|
public int getAppealSmsNoticeOpen() {
|
return appealSmsNoticeOpen;
|
}
|
|
public void setAppealSmsNoticeOpen(int appealSmsNoticeOpen) {
|
this.appealSmsNoticeOpen = appealSmsNoticeOpen;
|
}
|
|
public int getAppealAppNoticeOpen() {
|
return appealAppNoticeOpen;
|
}
|
|
public void setAppealAppNoticeOpen(int appealAppNoticeOpen) {
|
this.appealAppNoticeOpen = appealAppNoticeOpen;
|
}
|
|
public int getChatAppNoticeOpen() {
|
return chatAppNoticeOpen;
|
}
|
|
public void setChatAppNoticeOpen(int chatAppNoticeOpen) {
|
this.chatAppNoticeOpen = chatAppNoticeOpen;
|
}
|
|
public int getSecurityMailNoticeOpen() {
|
return securityMailNoticeOpen;
|
}
|
|
public void setSecurityMailNoticeOpen(int securityMailNoticeOpen) {
|
this.securityMailNoticeOpen = securityMailNoticeOpen;
|
}
|
|
public int getSecuritySmsNoticeOpen() {
|
return securitySmsNoticeOpen;
|
}
|
|
public void setSecuritySmsNoticeOpen(int securitySmsNoticeOpen) {
|
this.securitySmsNoticeOpen = securitySmsNoticeOpen;
|
}
|
|
public int getSecurityAppNoticeOpen() {
|
return securityAppNoticeOpen;
|
}
|
|
public void setSecurityAppNoticeOpen(int securityAppNoticeOpen) {
|
this.securityAppNoticeOpen = securityAppNoticeOpen;
|
}
|
|
public String getPhoneAuthority() {
|
return phoneAuthority;
|
}
|
|
public void setPhoneAuthority(String phoneAuthority) {
|
this.phoneAuthority = phoneAuthority;
|
}
|
|
public String getEmailAuthority() {
|
return emailAuthority;
|
}
|
|
public void setEmailAuthority(String emailAuthority) {
|
this.emailAuthority = emailAuthority;
|
}
|
|
public String getKycAuthority() {
|
return kycAuthority;
|
}
|
|
public void setKycAuthority(String kycAuthority) {
|
this.kycAuthority = kycAuthority;
|
}
|
|
public String getKycHighlevelAuthority() {
|
return kycHighlevelAuthority;
|
}
|
|
public void setKycHighlevelAuthority(String kycHighlevelAuthority) {
|
this.kycHighlevelAuthority = kycHighlevelAuthority;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
}
|