ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的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 ```