|
@@ -0,0 +1,152 @@
|
|
|
+package com.emato.ccnet.wx.dao.entity.oms;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+public class MerchantSecret implements Serializable {
|
|
|
+ private String secSn;
|
|
|
+
|
|
|
+ private String merchSn;
|
|
|
+
|
|
|
+ private String merchSecType;
|
|
|
+
|
|
|
+ private String md5Salt;
|
|
|
+
|
|
|
+ private String merchPubKey;
|
|
|
+
|
|
|
+ private String merchPriKey;
|
|
|
+
|
|
|
+ private String ematoPubKey;
|
|
|
+
|
|
|
+ private String ematoPriKey;
|
|
|
+
|
|
|
+ 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 MerchantSecret() {
|
|
|
+ super();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSecSn() {
|
|
|
+ return secSn;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSecSn(String secSn) {
|
|
|
+ this.secSn = secSn == null ? null : secSn.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMerchSn() {
|
|
|
+ return merchSn;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMerchSn(String merchSn) {
|
|
|
+ this.merchSn = merchSn == null ? null : merchSn.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMerchSecType() {
|
|
|
+ return merchSecType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMerchSecType(String merchSecType) {
|
|
|
+ this.merchSecType = merchSecType == null ? null : merchSecType.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMd5Salt() {
|
|
|
+ return md5Salt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMd5Salt(String md5Salt) {
|
|
|
+ this.md5Salt = md5Salt == null ? null : md5Salt.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMerchPubKey() {
|
|
|
+ return merchPubKey;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMerchPubKey(String merchPubKey) {
|
|
|
+ this.merchPubKey = merchPubKey == null ? null : merchPubKey.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMerchPriKey() {
|
|
|
+ return merchPriKey;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMerchPriKey(String merchPriKey) {
|
|
|
+ this.merchPriKey = merchPriKey == null ? null : merchPriKey.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEmatoPubKey() {
|
|
|
+ return ematoPubKey;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEmatoPubKey(String ematoPubKey) {
|
|
|
+ this.ematoPubKey = ematoPubKey == null ? null : ematoPubKey.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEmatoPriKey() {
|
|
|
+ return ematoPriKey;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEmatoPriKey(String ematoPriKey) {
|
|
|
+ this.ematoPriKey = ematoPriKey == null ? null : ematoPriKey.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;
|
|
|
+ }
|
|
|
+}
|