2dbeaa7a3868f208cfb4b092641c4ca5d5ac86a4.svn-base
1.73 KB
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
/**
* Copyright © 2015-2018 ODM All rights reserved.
*/
package com.thinkgem.jeesite.modules.gen.entity;
import java.io.Serializable;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlRootElement;
import com.thinkgem.jeesite.modules.sys.entity.Dict;
/**
* 生成方案Entity
* @author ThinkGem
* @version 2013-10-15
*/
@XmlRootElement(name="config")
public class GenConfig implements Serializable {
private static final long serialVersionUID = 1L;
private List<GenCategory> categoryList; // 代码模板分类
private List<Dict> javaTypeList; // Java类型
private List<Dict> queryTypeList; // 查询类型
private List<Dict> showTypeList; // 显示类型
public GenConfig() {
super();
}
@XmlElementWrapper(name = "category")
@XmlElement(name = "category")
public List<GenCategory> getCategoryList() {
return categoryList;
}
public void setCategoryList(List<GenCategory> categoryList) {
this.categoryList = categoryList;
}
@XmlElementWrapper(name = "javaType")
@XmlElement(name = "dict")
public List<Dict> getJavaTypeList() {
return javaTypeList;
}
public void setJavaTypeList(List<Dict> javaTypeList) {
this.javaTypeList = javaTypeList;
}
@XmlElementWrapper(name = "queryType")
@XmlElement(name = "dict")
public List<Dict> getQueryTypeList() {
return queryTypeList;
}
public void setQueryTypeList(List<Dict> queryTypeList) {
this.queryTypeList = queryTypeList;
}
@XmlElementWrapper(name = "showType")
@XmlElement(name = "dict")
public List<Dict> getShowTypeList() {
return showTypeList;
}
public void setShowTypeList(List<Dict> showTypeList) {
this.showTypeList = showTypeList;
}
}