JeecgBoot 3.1.0 版本发布,基于代码生成器的企业级低代码平台

pull/3186/head
zhangdaiscott 2022-02-24 17:03:59 +08:00
parent f8c7ddd223
commit 897dcbca78
4 changed files with 200 additions and 185 deletions

View File

@ -11,7 +11,7 @@
},
"dependencies": {
"ant-design-vue": "^1.7.2",
"@jeecg/antd-online-mini": "3.0.0-RC",
"@jeecg/antd-online-mini": "3.1.0-beta",
"@antv/data-set": "^0.11.4",
"viser-vue": "^2.4.8",
"axios": "^0.18.0",

File diff suppressed because one or more lines are too long

View File

@ -5,6 +5,9 @@ ADD COLUMN `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建日期' AF
ADD COLUMN `update_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人登录名称' AFTER `create_time`,
ADD COLUMN `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新日期' AFTER `update_by`;
-- online 表单字段db类型区分年月日和年月日时分秒
UPDATE onl_cgform_field SET db_type = 'Datetime' where db_type = 'Date';
-- 对象存储字段太短
ALTER TABLE `oss_file`
MODIFY COLUMN `url` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件地址' AFTER `file_name`;

View File

@ -114,7 +114,7 @@
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>hibernate-re</artifactId>
<version>3.0.02</version>
<version>3.1.0-beta</version>
</dependency>
<!-- 数据库驱动 -->