admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package com.yeshi.fanli.entity.system;
 
import com.yeshi.fanli.entity.SystemEnum;
import org.springframework.data.annotation.Transient;
 
import java.io.Serializable;
 
/**
 * 业务系统
 *
 * @author Administrator
 */
@org.yeshi.utils.generater.mybatis.Table("yeshi_ec_system")
public class BusinessSystem implements Serializable {
    private static final long serialVersionUID = 2735576110255715412L;
 
    @org.yeshi.utils.generater.mybatis.Column(name = "id")
    private Long id;
 
    @org.yeshi.utils.generater.mybatis.Column(name = "name")
    private String name;
 
    @org.yeshi.utils.generater.mybatis.Column(name = "platform")
    private Integer platform;// 1-Android 2-IOS 3-web
 
    @org.yeshi.utils.generater.mybatis.Column(name = "createtime")
    private Long createtime;
 
    @org.yeshi.utils.generater.mybatis.Column(name = "beizhu")
    private String beizhu;
 
    @org.yeshi.utils.generater.mybatis.Column(name = "package_name")
    private String packageName;// Android包名或IOS bundleid
 
    @org.yeshi.utils.generater.mybatis.Column(name = "appid")
    private String appid;
 
    @org.yeshi.utils.generater.mybatis.Column(name = "system")
    private SystemEnum system;//系统
 
    @org.yeshi.utils.generater.mybatis.Column(name = "wx_app_id")
    private String wxAppId;
 
    @org.yeshi.utils.generater.mybatis.Column(name = "wx_app_secret")
    private String wxAppSecret;
 
    public String getWxAppId() {
        return wxAppId;
    }
 
    public void setWxAppId(String wxAppId) {
        this.wxAppId = wxAppId;
    }
 
    public String getWxAppSecret() {
        return wxAppSecret;
    }
 
    public void setWxAppSecret(String wxAppSecret) {
        this.wxAppSecret = wxAppSecret;
    }
 
    @Transient
    private int check;//判断是否选中: 1选中  0 未选中
 
 
    public BusinessSystem() {
    }
 
    public BusinessSystem(Long id) {
        super();
        this.id = id;
    }
 
    public SystemEnum getSystem() {
        return system;
    }
 
    public void setSystem(SystemEnum system) {
        this.system = system;
    }
 
    public BusinessSystem(String name, int platform, long createtime, String beizhu,
                          String packageName) {
        super();
        this.name = name;
        this.platform = platform;
        this.createtime = createtime;
        this.beizhu = beizhu;
        this.packageName = packageName;
    }
 
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Integer getPlatform() {
        return platform;
    }
 
    public void setPlatform(Integer platform) {
        this.platform = platform;
    }
 
    public Long getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(Long createtime) {
        this.createtime = createtime;
    }
 
    public String getAppid() {
        return appid;
    }
 
    public void setAppid(String appid) {
        this.appid = appid;
    }
 
    public String getPackageName() {
        return packageName;
    }
 
    public void setPackageName(String packageName) {
        this.packageName = packageName;
    }
 
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
 
    public String getBeizhu() {
        return beizhu;
    }
 
    public void setBeizhu(String beizhu) {
        this.beizhu = beizhu;
    }
 
    public int getCheck() {
        return check;
    }
 
    public void setCheck(int check) {
        this.check = check;
    }
 
 
}