收银点

This commit is contained in:
19991905653 2024-02-29 09:04:46 +08:00
parent 307aaf50eb
commit 1215911372
1 changed files with 40 additions and 0 deletions

View File

@ -24,6 +24,14 @@ public class TbPlussMerchantCashPlace implements Serializable {
private Date updatetime;
private Integer rootAccountId;
private String merchantCode;
private Integer payPassageId;
private String payPassageName;
private static final long serialVersionUID = 1L;
public Integer getId() {
@ -105,4 +113,36 @@ public class TbPlussMerchantCashPlace implements Serializable {
public void setUpdatetime(Date 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();
}
}