package com.ks.app.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class AppWXInfo implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
private Long appId;
|
|
private String wxAppId;
|
|
private String wxAppSecret;
|
|
private Date createTime;
|
|
private Date updateTime;
|
|
public Long getAppId() {
|
return appId;
|
}
|
|
public void setAppId(Long appId) {
|
this.appId = appId;
|
}
|
|
public String getWxAppId() {
|
return wxAppId;
|
}
|
|
public void setWxAppId(String wxAppId) {
|
this.wxAppId = wxAppId == null ? null : wxAppId.trim();
|
}
|
|
public String getWxAppSecret() {
|
return wxAppSecret;
|
}
|
|
public void setWxAppSecret(String wxAppSecret) {
|
this.wxAppSecret = wxAppSecret == null ? null : wxAppSecret.trim();
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|