企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
模板参数 (名称:参数) | 名称 | 描述 | | --- | --- | | (year:4) | 年 | | (month:2) | 月 | | (day:2) | 天| | (word:'字符串') | 固定字符| 示例 ``` import net.sohelp.ide.db.AutoCoderUtil; String tableName = "pb\_test";//数据实体表 String tableField = "bh";//数据字段 Map paramMap = new HashMap(); paramMap.put("","");//参数 String format = "(year:4)(day:2)(word:-)(serail:4)"; //生成模板 String code = AutoCoderUtil.code(tableName,field,format,paramMap); System.out.println(code);//20220604-0001 ```