收银点
This commit is contained in:
@@ -24,6 +24,14 @@ public class TbPlussMerchantCashPlace implements Serializable {
|
|||||||
|
|
||||||
private Date updatetime;
|
private Date updatetime;
|
||||||
|
|
||||||
|
private Integer rootAccountId;
|
||||||
|
|
||||||
|
private String merchantCode;
|
||||||
|
|
||||||
|
private Integer payPassageId;
|
||||||
|
|
||||||
|
private String payPassageName;
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
public Integer getId() {
|
public Integer getId() {
|
||||||
@@ -105,4 +113,36 @@ public class TbPlussMerchantCashPlace implements Serializable {
|
|||||||
public void setUpdatetime(Date updatetime) {
|
public void setUpdatetime(Date updatetime) {
|
||||||
this.updatetime = updatetime;
|
this.updatetime = updatetime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Integer getRootAccountId() {
|
||||||
|
return rootAccountId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRootAccountId(Integer rootAccountId) {
|
||||||
|
this.rootAccountId = rootAccountId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMerchantCode() {
|
||||||
|
return merchantCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMerchantCode(String merchantCode) {
|
||||||
|
this.merchantCode = merchantCode == null ? null : merchantCode.trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getPayPassageId() {
|
||||||
|
return payPassageId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPayPassageId(Integer payPassageId) {
|
||||||
|
this.payPassageId = payPassageId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPayPassageName() {
|
||||||
|
return payPassageName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPayPassageName(String payPassageName) {
|
||||||
|
this.payPassageName = payPassageName == null ? null : payPassageName.trim();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user