luoyb
2021-01-26 812b60a862bdff5612893abdcc0bcfd7b649df7b
febs-server/febs-server-generator/src/main/resources/generator/templates/entity.ftl
@@ -1,10 +1,10 @@
package ${basePackage}.${entityPackage};
<#if hasDate = true>
import java.util.Date;
    import java.util.Date;
</#if>
<#if hasBigDecimal = true>
import java.math.BigDecimal;
    import java.math.BigDecimal;
</#if>
import lombok.Data;
import com.baomidou.mybatisplus.annotation.IdType;
@@ -13,10 +13,14 @@
import com.baomidou.mybatisplus.annotation.TableName;
/**
* ${tableComment} Entity
*
* name:${className}
* package:${basePackage}.${controllerPackage}
* description:${tableComment}数据表映射实体
*
* @author ${author}
* @date ${date}
* @since JDK1.8
*/
@Data
@TableName("${tableName}")
@@ -24,42 +28,42 @@
<#if columns??>
    <#list columns as column>
    /**
     * ${column.remark}
     */
        /**
        * ${column.remark}
        */
        <#if column.isKey = true>
    @TableId(value = "${column.name}", type = IdType.AUTO)
            @TableId(value = "${column.name}", type = IdType.AUTO)
        <#else>
    @TableField("${column.name}")
            @TableField("${column.name}")
        </#if>
        <#if (column.type = 'varchar' || column.type = 'text' || column.type = 'uniqueidentifier'
        || column.type = 'varchar2' || column.type = 'nvarchar' || column.type = 'VARCHAR2'
        || column.type = 'VARCHAR'|| column.type = 'CLOB' || column.type = 'char')>
    private String ${column.field?uncap_first};
            private String ${column.field?uncap_first};
        </#if>
        <#if column.type = 'timestamp' || column.type = 'date' || column.type = 'datetime'||column.type = 'TIMESTAMP' || column.type = 'DATE' || column.type = 'DATETIME'>
    private Date ${column.field?uncap_first};
            private Date ${column.field?uncap_first};
        </#if>
        <#if column.type = 'int' || column.type = 'smallint'>
    private Integer ${column.field?uncap_first};
        <#if column.type = 'int' || column.type = 'smallint'|| column.type = 'bit'>
            private Integer ${column.field?uncap_first};
        </#if>
        <#if column.type = 'double'>
    private Double ${column.field?uncap_first};
            private Double ${column.field?uncap_first};
        </#if>
        <#if column.type = 'bigint'>
    private Long ${column.field?uncap_first};
            private Long ${column.field?uncap_first};
        </#if>
        <#if column.type = 'tinyint'>
    private Byte ${column.field?uncap_first};
            private Byte ${column.field?uncap_first};
        </#if>
        <#if column.type = 'decimal' || column.type = 'numeric'>
    private BigDecimal ${column.field?uncap_first};
            private BigDecimal ${column.field?uncap_first};
        </#if>
    </#list>
</#if>