package com.java110.vo.api.smallWeChat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class ApiSmallWeChatDataVo implements Serializable {
|
|
private String operate;
|
private String createTime;
|
private String appId;
|
private String name;
|
private String appSecret;
|
private String statusCd;
|
private String weChatId;
|
private String bId;
|
private String storeId;
|
private String payPassword;
|
private String remarks;
|
|
public String getOperate() {
|
return operate;
|
}
|
|
public void setOperate(String operate) {
|
this.operate = operate;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getAppId() {
|
return appId;
|
}
|
|
public void setAppId(String appId) {
|
this.appId = appId;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getAppSecret() {
|
return appSecret;
|
}
|
|
public void setAppSecret(String appSecret) {
|
this.appSecret = appSecret;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getWeChatId() {
|
return weChatId;
|
}
|
|
public void setWeChatId(String weChatId) {
|
this.weChatId = weChatId;
|
}
|
|
public String getBId() {
|
return bId;
|
}
|
|
public void setBId(String bId) {
|
this.bId = bId;
|
}
|
|
public String getStoreId() {
|
return storeId;
|
}
|
|
public void setStoreId(String storeId) {
|
this.storeId = storeId;
|
}
|
|
public String getPayPassword() {
|
return payPassword;
|
}
|
|
public void setPayPassword(String payPassword) {
|
this.payPassword = payPassword;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
|
|
}
|