admin
2020-12-01 afdacbdf0e92ed0e85d3e28dcde9cb0e519ee07f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.ks.app.entity;
 
import java.io.Serializable;
import java.util.Date;
 
public class AppWXInfo implements Serializable {
    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;
    }
}