7d68ccc6af117c53ccaef328c2f8306c1a829654.svn-base
1.17 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
/**
* Copyright © 2015-2018 ODM All rights reserved.
*/
package com.thinkgem.jeesite.modules.gen.entity;
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="category")
public class GenCategory extends Dict {
private static final long serialVersionUID = 1L;
private List<String> template; // 主表模板
private List<String> childTableTemplate;// 子表模板
public static String CATEGORY_REF = "category-ref:";
public GenCategory() {
super();
}
@XmlElement(name = "template")
public List<String> getTemplate() {
return template;
}
public void setTemplate(List<String> template) {
this.template = template;
}
@XmlElementWrapper(name = "childTable")
@XmlElement(name = "template")
public List<String> getChildTableTemplate() {
return childTableTemplate;
}
public void setChildTableTemplate(List<String> childTableTemplate) {
this.childTableTemplate = childTableTemplate;
}
}