
templates.generator.java.custom2.entity_java.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artoria-extend Show documentation
Show all versions of artoria-extend Show documentation
Artoria is a java technology framework based on the facade pattern.
The newest version!
package ${table.entityPackageName};
import lombok.Data;
import java.io.Serializable;
#foreach(${typeImport} in ${table.typeImportList})
import ${typeImport};
#end
/**
* The entity of the table "${table.name}".
* @author $!{author}
* @date $!{date}
*/
@Data
public class ${table.entityClassName} implements Serializable {
/* (Start) This will be covered, please do not modify. */
#foreach(${column} in ${table.columnList})
/**
* $!{column.remarks}
*/
private ${column.javaType} ${column.fieldName};
#end
/* (End) This will be covered, please do not modify. */
/* Generated by artoria-extend in ${buildTime}. */
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy