package com.nq.pojo;
|
|
import lombok.Data;
|
import org.codehaus.jackson.annotate.JsonProperty;
|
|
import java.beans.ConstructorProperties;
|
import java.math.BigDecimal;
|
|
public class SitePay {
|
private Integer id;
|
private Integer agentId;
|
private Integer cType;
|
private String formUrl;
|
private String formCode;
|
private String channelType;
|
private String channelName;
|
private String channelDesc;
|
private String channelAccount;
|
private String channelImg;
|
private Integer channelMinLimit;
|
private Integer channelMaxLimit;
|
private Integer isShow;
|
private Integer isLock;
|
/*累计充值金额*/
|
private BigDecimal totalPrice;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getAgentId() {
|
return agentId;
|
}
|
|
public void setAgentId(Integer agentId) {
|
this.agentId = agentId;
|
}
|
|
public Integer getcType() {
|
return cType;
|
}
|
|
public void setcType(Integer cType) {
|
this.cType = cType;
|
}
|
|
public String getFormUrl() {
|
return formUrl;
|
}
|
|
public void setFormUrl(String formUrl) {
|
this.formUrl = formUrl;
|
}
|
|
public String getFormCode() {
|
return formCode;
|
}
|
|
public void setFormCode(String formCode) {
|
this.formCode = formCode;
|
}
|
|
public String getChannelType() {
|
return channelType;
|
}
|
|
public void setChannelType(String channelType) {
|
this.channelType = channelType;
|
}
|
|
public String getChannelName() {
|
return channelName;
|
}
|
|
public void setChannelName(String channelName) {
|
this.channelName = channelName;
|
}
|
|
public String getChannelDesc() {
|
return channelDesc;
|
}
|
|
public void setChannelDesc(String channelDesc) {
|
this.channelDesc = channelDesc;
|
}
|
|
public String getChannelAccount() {
|
return channelAccount;
|
}
|
|
public void setChannelAccount(String channelAccount) {
|
this.channelAccount = channelAccount;
|
}
|
|
public String getChannelImg() {
|
return channelImg;
|
}
|
|
public void setChannelImg(String channelImg) {
|
this.channelImg = channelImg;
|
}
|
|
public Integer getChannelMinLimit() {
|
return channelMinLimit;
|
}
|
|
public void setChannelMinLimit(Integer channelMinLimit) {
|
this.channelMinLimit = channelMinLimit;
|
}
|
|
public Integer getChannelMaxLimit() {
|
return channelMaxLimit;
|
}
|
|
public void setChannelMaxLimit(Integer channelMaxLimit) {
|
this.channelMaxLimit = channelMaxLimit;
|
}
|
|
public Integer getIsShow() {
|
return isShow;
|
}
|
|
public void setIsShow(Integer isShow) {
|
this.isShow = isShow;
|
}
|
|
public Integer getIsLock() {
|
return isLock;
|
}
|
|
public void setIsLock(Integer isLock) {
|
this.isLock = isLock;
|
}
|
|
public BigDecimal getTotalPrice() {
|
return totalPrice;
|
}
|
|
public void setTotalPrice(BigDecimal totalPrice) {
|
this.totalPrice = totalPrice;
|
}
|
|
public SitePay() {
|
}
|
|
public SitePay(Integer id, Integer agentId, Integer cType, String formUrl, String formCode, String channelType, String channelName, String channelDesc, String channelAccount, String channelImg, Integer channelMinLimit, Integer channelMaxLimit, Integer isShow, Integer isLock, BigDecimal totalPrice) {
|
this.id = id;
|
this.agentId = agentId;
|
this.cType = cType;
|
this.formUrl = formUrl;
|
this.formCode = formCode;
|
this.channelType = channelType;
|
this.channelName = channelName;
|
this.channelDesc = channelDesc;
|
this.channelAccount = channelAccount;
|
this.channelImg = channelImg;
|
this.channelMinLimit = channelMinLimit;
|
this.channelMaxLimit = channelMaxLimit;
|
this.isShow = isShow;
|
this.isLock = isLock;
|
this.totalPrice = totalPrice;
|
}
|
}
|