parent
494a4fcf52
commit
534bb9a877
@ -1,25 +0,0 @@
|
|||||||
package ${fullPackage};
|
|
||||||
|
|
||||||
#foreach ($import in $importList)
|
|
||||||
import ${import};
|
|
||||||
#end
|
|
||||||
#if( ${table.audit} == 1 )
|
|
||||||
import ${env.baseAudit};
|
|
||||||
#end
|
|
||||||
import lombok.Data;
|
|
||||||
/**
|
|
||||||
* ${functionName} DTO 对象
|
|
||||||
*
|
|
||||||
* @author ${author}
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class ${ClassName}DTO#if( ${table.audit} == 1 ) extends BaseAudit#end {
|
|
||||||
#foreach ($column in $columns)
|
|
||||||
#if(!$table.isSuperColumn($column.javaField) and $column.javaField != "delFlag")
|
|
||||||
private $column.javaType $column.javaField;
|
|
||||||
#end
|
|
||||||
#end
|
|
||||||
#if($table.sub)
|
|
||||||
private List<${subClassName}DTO> ${subclassName}List;
|
|
||||||
#end
|
|
||||||
}
|
|
||||||
Loading…
Reference in new issue