xuhy
2023-08-11 b659987d3e120cea0b94fdb01f1ab06260f61825
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
package com.stylefeng.guns.generator.action.model;
 
/**
 * 代码生成的查询参数
 *
 * @author fengshuonan
 * @date 2017-11-30-下午2:05
 */
public class GenQo {
 
    /**
     * 数据库账号
     */
    private String userName;
 
    /**
     * 数据库密码
     */
    private String password;
 
    /**
     * 数据库url
     */
    private String url;
 
    /**
     * 项目地址
     */
    private String projectPath;
 
    /**
     * 作者
     */
    private String author;
 
    /**
     * 项目的包
     */
    private String projectPackage;
 
    /**
     * 核心模块的包
     */
    private String corePackage;
 
    /**
     * 表名称
     */
    private String tableName;
 
    /**
     * 忽略的表前缀
     */
    private String ignoreTabelPrefix;
 
    /**
     * 业务名称
     */
    private String bizName;
 
    /**
     * 模块名
     */
    private String moduleName;
    
    /**
     * 父级菜单名称
     */
    private String parentMenuName;
 
    /**
     * 是否生成控制器代码开关
     */
    private Boolean controllerSwitch = false;
 
    /**
     * 主页
     */
    private Boolean indexPageSwitch = false;
 
    /**
     * 添加页面
     */
    private Boolean addPageSwitch = false;
 
    /**
     * 编辑页面
     */
    private Boolean editPageSwitch = false;
 
    /**
     * 主页的js
     */
    private Boolean jsSwitch = false;
 
    /**
     * 详情页面js
     */
    private Boolean infoJsSwitch = false;
 
    /**
     * dao的开关
     */
    private Boolean daoSwitch = false;
 
    /**
     * service
     */
    private Boolean serviceSwitch = false;
 
    /**
     * 生成实体的开关
     */
    private Boolean entitySwitch = false;
 
    /**
     * 生成sql的开关
     */
    private Boolean sqlSwitch = false;
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getProjectPath() {
        return projectPath;
    }
 
    public void setProjectPath(String projectPath) {
        this.projectPath = projectPath;
    }
 
    public String getAuthor() {
        return author;
    }
 
    public void setAuthor(String author) {
        this.author = author;
    }
 
    public String getCorePackage() {
        return corePackage;
    }
 
    public void setCorePackage(String corePackage) {
        this.corePackage = corePackage;
    }
 
    public String getProjectPackage() {
 
        return projectPackage;
    }
 
    public void setProjectPackage(String projectPackage) {
        this.projectPackage = projectPackage;
    }
 
    public String getTableName() {
        return tableName;
    }
 
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
 
    public String getIgnoreTabelPrefix() {
        return ignoreTabelPrefix;
    }
 
    public void setIgnoreTabelPrefix(String ignoreTabelPrefix) {
        this.ignoreTabelPrefix = ignoreTabelPrefix;
    }
 
    public String getBizName() {
        return bizName;
    }
 
    public void setBizName(String bizName) {
        this.bizName = bizName;
    }
 
    public String getModuleName() {
        return moduleName;
    }
 
    public void setModuleName(String moduleName) {
        this.moduleName = moduleName;
    }
 
    public Boolean getControllerSwitch() {
        return controllerSwitch;
    }
 
    public void setControllerSwitch(Boolean controllerSwitch) {
        this.controllerSwitch = controllerSwitch;
    }
 
    public Boolean getIndexPageSwitch() {
        return indexPageSwitch;
    }
 
    public void setIndexPageSwitch(Boolean indexPageSwitch) {
        this.indexPageSwitch = indexPageSwitch;
    }
 
    public Boolean getAddPageSwitch() {
        return addPageSwitch;
    }
 
    public void setAddPageSwitch(Boolean addPageSwitch) {
        this.addPageSwitch = addPageSwitch;
    }
 
    public Boolean getEditPageSwitch() {
        return editPageSwitch;
    }
 
    public void setEditPageSwitch(Boolean editPageSwitch) {
        this.editPageSwitch = editPageSwitch;
    }
 
    public Boolean getJsSwitch() {
        return jsSwitch;
    }
 
    public void setJsSwitch(Boolean jsSwitch) {
        this.jsSwitch = jsSwitch;
    }
 
    public Boolean getInfoJsSwitch() {
        return infoJsSwitch;
    }
 
    public void setInfoJsSwitch(Boolean infoJsSwitch) {
        this.infoJsSwitch = infoJsSwitch;
    }
 
    public Boolean getDaoSwitch() {
        return daoSwitch;
    }
 
    public void setDaoSwitch(Boolean daoSwitch) {
        this.daoSwitch = daoSwitch;
    }
 
    public Boolean getServiceSwitch() {
        return serviceSwitch;
    }
 
    public void setServiceSwitch(Boolean serviceSwitch) {
        this.serviceSwitch = serviceSwitch;
    }
 
    public Boolean getEntitySwitch() {
        return entitySwitch;
    }
 
    public void setEntitySwitch(Boolean entitySwitch) {
        this.entitySwitch = entitySwitch;
    }
 
    public Boolean getSqlSwitch() {
        return sqlSwitch;
    }
 
    public void setSqlSwitch(Boolean sqlSwitch) {
        this.sqlSwitch = sqlSwitch;
    }
 
    public String getParentMenuName() {
        return parentMenuName;
    }
 
    public void setParentMenuName(String parentMenuName) {
        this.parentMenuName = parentMenuName;
    }
}