Helius
2021-02-26 de04085526eda992155716eda98af621ad681e4e
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
package ${codeModel.packageName};
 
<#list importList?keys as key>
import ${importList[key]};
</#list>    
 
/**
 * @description ${tableClassModel.tableMemo}
 * @author ${dataSource.author}
 * @date ${time}
 */
public class ${tableClassModel.className}  extends EntityDTOExt{
    @Extend
    private static final long serialVersionUID = 1L; 
 
<#list tableClassModel.mapping as being>
    
    <#if being.memo!="">
    /**
     * ${being.memo}
     */
    </#if>
    private ${being.classType}  ${being.property};
            
</#list>    
    
<#list tableClassModel.mapping as being>
 
    public ${being.classType} get${being.methodName}() {
        return ${being.property};
    }
       
       public ${tableClassModel.className} set${being.methodName}(${being.classType} ${being.property}) {
        this.${being.property}=${being.property};
        return this;
    }
       
</#list>    
 
 
  
}