1 Star 0 Fork 0

summit-xf/easycode-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dto.vm 720 Bytes
一键复制 编辑 原始数据 按行查看 历史
summit-xf 提交于 2021-07-15 04:41 . update with lombok
##引入宏定义
$!init
$!define
#set($dtoName = $tool.append($tableInfo.name, "Dto"))
##使用宏定义设置回调(保存位置与文件后缀)
#save("/dto", "Dto.java")
##使用宏定义设置包后缀
#setPackageSuffix("dto")
##使用全局变量实现默认包导入
$!autoImport
import java.io.Serializable;
import lombok.Data;
##使用宏定义实现类注释信息
#tableComment("实体类")
@Data
public class $!{dtoName} implements Serializable {
private static final long serialVersionUID = $!tool.serial();
#foreach($column in $tableInfo.fullColumn)
#if(${column.comment})/**
* ${column.comment}
*/#end
private $!{tool.getClsNameByFullName($column.type)} $!{column.name};
#end
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/summitxf/easycode-template.git
git@gitee.com:summitxf/easycode-template.git
summitxf
easycode-template
easycode-template
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385