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

markdown-template.tables-markdown.ftl Maven / Gradle / Ivy

The newest version!
# `${group}` 组

| 序号 | 表名 | 备注 |
|---|---|---|
<#list entities as entity>
| ${entity_index + 1} | ${entity.getName()} | ${entity.getComment()} |


<#list entities as entity>
## `${entity.getName()}` : ${entity.getComment()}

| 序号 | 列名 | 类型 | 备注 | 特性 |
|---|---|---|---|---|
<#list entity.getColumns() as field>
| ${style(field,"id",field.getIndex())} | ${style(field,"name",field.getName())} | ${style(field,"sqlType",field.getSqlType())} | ${style(field,"remark",field.getRemark())} | ${style(field,"extra",field.primary())} |



<#if (entity.getAuks()?size > 0)>
联合唯一索引:

<#list entity.getAuks() as uk>
    ${uk_index}: ${uk}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy