All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.generator.java.custom2.entity_java.vm Maven / Gradle / Ivy

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