|
@@ -0,0 +1,172 @@
|
|
|
+package com.emato.ccnet.wx.dao.entity.oms;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+public class MerchantPlatform implements Serializable {
|
|
|
+ private String platSn;
|
|
|
+
|
|
|
+ private String merchSn;
|
|
|
+
|
|
|
+ private String platName;
|
|
|
+
|
|
|
+ private String platEname;
|
|
|
+
|
|
|
+ private String platCusCode;
|
|
|
+
|
|
|
+ private String platCusName;
|
|
|
+
|
|
|
+ private String platUrl;
|
|
|
+
|
|
|
+ private String platContacter;
|
|
|
+
|
|
|
+ private String platCntTel;
|
|
|
+
|
|
|
+ private String platCntMob;
|
|
|
+
|
|
|
+ private String isValid;
|
|
|
+
|
|
|
+ private String createrSn;
|
|
|
+
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ private String moderSn;
|
|
|
+
|
|
|
+ private Date modTime;
|
|
|
+
|
|
|
+ private Date tstm;
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ public MerchantPlatform() {
|
|
|
+ super();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlatSn() {
|
|
|
+ return platSn;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlatSn(String platSn) {
|
|
|
+ this.platSn = platSn == null ? null : platSn.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMerchSn() {
|
|
|
+ return merchSn;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMerchSn(String merchSn) {
|
|
|
+ this.merchSn = merchSn == null ? null : merchSn.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlatName() {
|
|
|
+ return platName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlatName(String platName) {
|
|
|
+ this.platName = platName == null ? null : platName.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlatEname() {
|
|
|
+ return platEname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlatEname(String platEname) {
|
|
|
+ this.platEname = platEname == null ? null : platEname.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlatCusCode() {
|
|
|
+ return platCusCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlatCusCode(String platCusCode) {
|
|
|
+ this.platCusCode = platCusCode == null ? null : platCusCode.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlatCusName() {
|
|
|
+ return platCusName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlatCusName(String platCusName) {
|
|
|
+ this.platCusName = platCusName == null ? null : platCusName.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlatUrl() {
|
|
|
+ return platUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlatUrl(String platUrl) {
|
|
|
+ this.platUrl = platUrl == null ? null : platUrl.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlatContacter() {
|
|
|
+ return platContacter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlatContacter(String platContacter) {
|
|
|
+ this.platContacter = platContacter == null ? null : platContacter.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlatCntTel() {
|
|
|
+ return platCntTel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlatCntTel(String platCntTel) {
|
|
|
+ this.platCntTel = platCntTel == null ? null : platCntTel.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlatCntMob() {
|
|
|
+ return platCntMob;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlatCntMob(String platCntMob) {
|
|
|
+ this.platCntMob = platCntMob == null ? null : platCntMob.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIsValid() {
|
|
|
+ return isValid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsValid(String isValid) {
|
|
|
+ this.isValid = isValid == null ? null : isValid.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreaterSn() {
|
|
|
+ return createrSn;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreaterSn(String createrSn) {
|
|
|
+ this.createrSn = createrSn == null ? null : createrSn.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getModerSn() {
|
|
|
+ return moderSn;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModerSn(String moderSn) {
|
|
|
+ this.moderSn = moderSn == null ? null : moderSn.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getModTime() {
|
|
|
+ return modTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModTime(Date modTime) {
|
|
|
+ this.modTime = modTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getTstm() {
|
|
|
+ return tstm;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTstm(Date tstm) {
|
|
|
+ this.tstm = tstm;
|
|
|
+ }
|
|
|
+}
|