修改生成PageReqVO和ExportReqVO实体,时间类型为Date而不是LocalDateTime的错误问题

Signed-off-by: jiaohongtao <jiaohongtaovip@163.com>
This commit is contained in:
jiaohongtao 2023-06-16 09:09:51 +00:00 committed by Gitee
parent 5f8129d65b
commit 333eecae77
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -56,7 +56,7 @@ public class DatabaseTableServiceImpl implements DatabaseTableService {
// 移除工作流和定时任务前缀的表名 // TODO 未来做成可配置
strategyConfig.addExclude("ACT_[\\S\\s]+|QRTZ_[\\S\\s]+|FLW_[\\S\\s]+");
}
GlobalConfig globalConfig = new GlobalConfig.Builder().dateType(DateType.ONLY_DATE).build(); // 只使用 LocalDateTime 类型不使用 LocalDate
GlobalConfig globalConfig = new GlobalConfig.Builder().dateType(DateType.TIME_PACK).build(); // 只使用 LocalDateTime 类型不使用 LocalDate
ConfigBuilder builder = new ConfigBuilder(null, dataSourceConfig, strategyConfig.build(),
null, globalConfig, null);
// 按照名字排序