admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
package com.yeshi.buwan.domain.system;
 
import java.io.Serializable;
 
import javax.persistence.Entity;
import javax.persistence.ManyToOne;
 
import com.google.gson.annotations.Expose;
import com.yeshi.buwan.domain.AdminInfo;
 
/**
 * 大系统下面的分系统
 * 
 * @author Administrator
 * 
 */
@Entity
public class DetailSystem implements Serializable{
    public DetailSystem(String id) {
        this.id = id;
    }
 
    public DetailSystem() {
 
    }
    @Expose
    private String id;
    @ManyToOne
    @Expose
    private SystemInfo system;
 
    public SystemInfo getSystem() {
        return system;
    }
 
    public void setSystem(SystemInfo system) {
        this.system = system;
    }
    @Expose
    private String packageName;
    @Expose
    private String createtime;
    @ManyToOne
    private AdminInfo info;
    @Expose
    private String appName;
    @Expose
    private String beizhu;
    private String umengAppKey;
    @Expose
    private String iosUmengAppKey;
    private String umengMasterKey;
    @Expose
    private String iosUmengMasterKey;
    @Expose
    private int platform;// 1-Android 2-IOS
    private boolean appStoreIng;// 是否正在上传应用市场
    private int appStoreVersion;// 上传版本
    @Expose
    private String sohuPartner;
    @Expose
    private String sohuKey;
 
    public String getSohuPartner() {
        return sohuPartner;
    }
 
    public void setSohuPartner(String sohuPartner) {
        this.sohuPartner = sohuPartner;
    }
 
    public String getSohuKey() {
        return sohuKey;
    }
 
    public void setSohuKey(String sohuKey) {
        this.sohuKey = sohuKey;
    }
 
    public boolean isAppStoreIng() {
        return appStoreIng;
    }
 
    public void setAppStoreIng(boolean appStoreIng) {
        this.appStoreIng = appStoreIng;
    }
 
    public int getAppStoreVersion() {
        return appStoreVersion;
    }
 
    public void setAppStoreVersion(int appStoreVersion) {
        this.appStoreVersion = appStoreVersion;
    }
 
    public int getPlatform() {
        return platform;
    }
 
    public void setPlatform(int platform) {
        this.platform = platform;
    }
 
    public String getUmengAppKey() {
        return umengAppKey;
    }
 
    public void setUmengAppKey(String umengAppKey) {
        this.umengAppKey = umengAppKey;
    }
 
    public String getUmengMasterKey() {
        return umengMasterKey;
    }
 
    public void setUmengMasterKey(String umengMasterKey) {
        this.umengMasterKey = umengMasterKey;
    }
 
    public String getIosUmengAppKey() {
        return iosUmengAppKey;
    }
 
    public void setIosUmengAppKey(String iosUmengAppKey) {
        this.iosUmengAppKey = iosUmengAppKey;
    }
 
    public String getIosUmengMasterKey() {
        return iosUmengMasterKey;
    }
 
    public void setIosUmengMasterKey(String iosUmengMasterKey) {
        this.iosUmengMasterKey = iosUmengMasterKey;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getPackageName() {
        return packageName;
    }
 
    public void setPackageName(String packageName) {
        this.packageName = packageName;
    }
 
    public String getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
 
    public AdminInfo getInfo() {
        return info;
    }
 
    public void setInfo(AdminInfo info) {
        this.info = info;
    }
 
    public String getAppName() {
        return appName;
    }
 
    public void setAppName(String appName) {
        this.appName = appName;
    }
 
    public String getBeizhu() {
        return beizhu;
    }
 
    public void setBeizhu(String beizhu) {
        this.beizhu = beizhu;
    }
 
    @Override
    public String toString() {
        return "DetailSystem [id=" + id + ", system=" + system
                + ", packageName=" + packageName + ", createtime=" + createtime
                + ", info=" + info + ", appName=" + appName + ", beizhu="
                + beizhu + ", umengAppKey=" + umengAppKey + ", iosUmengAppKey="
                + iosUmengAppKey + ", umengMasterKey=" + umengMasterKey
                + ", iosUmengMasterKey=" + iosUmengMasterKey + ", platform="
                + platform + ", appStoreIng=" + appStoreIng
                + ", appStoreVersion=" + appStoreVersion + ", sohuPartner="
                + sohuPartner + ", sohuKey=" + sohuKey + "]";
    }
    
}