Skip to content

Commit

Permalink
1.5.1版本发布
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangdaiscott committed Jul 11, 2022
1 parent b86d32f commit ad88ba1
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# JimuReport - 积木报表(一款免费Web报表工具)

v1.5.0 | 2022-05-26
v1.5.1 | 2022-07-11


[![](https://img.shields.io/badge/Author-北京国炬软件-orange.svg)](http://jimureport.com)
[![](https://img.shields.io/badge/version-1.5.0-brightgreen.svg)](https://github.com/zhangdaiscott/JimuReport)
[![](https://img.shields.io/badge/version-1.5.1-brightgreen.svg)](https://github.com/zhangdaiscott/JimuReport)
[![GitHub stars](https://img.shields.io/github/stars/zhangdaiscott/JimuReport.svg?style=social&label=Stars)](https://github.com/zhangdaiscott/JimuReport)
[![GitHub forks](https://img.shields.io/github/forks/zhangdaiscott/JimuReport.svg?style=social&label=Fork)](https://github.com/zhangdaiscott/JimuReport)

Expand Down Expand Up @@ -43,7 +43,7 @@ v1.5.0 | 2022-05-26
<dependency>
<groupId>org.jeecgframework.jimureport</groupId>
<artifactId>jimureport-spring-boot-starter</artifactId>
<version>1.5.0</version>
<version>1.5.1</version>
</dependency>
```

Expand All @@ -53,7 +53,7 @@ v1.5.0 | 2022-05-26
<dependency>
<groupId>org.jeecgframework.jimureport</groupId>
<artifactId>jimureport-spring-boot-starter</artifactId>
<version>1.5.0</version>
<version>1.5.1</version>
<exclusions>
<exclusion>
<artifactId>minidao-spring-boot-starter</artifactId>
Expand Down
11 changes: 11 additions & 0 deletions db/jimureport.mysql5.7.create.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1619,4 +1619,15 @@ INSERT INTO `tmp_report_data_income` VALUES ('中石油控股或有控股权', 3
INSERT INTO `tmp_report_data_income` VALUES ('中石油参股', 72062.45, 0.00, 0.00, 0.00, 0.00, 0.00, 72062.75);
INSERT INTO `tmp_report_data_income` VALUES ('非中石油', 1486526.90, 212070.72, 0.00, 0.00, 0.00, 226415.09, 1698597.62);

-- ----------------------------
-- 多租户字段
-- ----------------------------
ALTER TABLE jimu_report_data_source
ADD COLUMN tenant_id varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '多租户标识' AFTER connect_times;
ALTER TABLE jimu_dict
ADD COLUMN tenant_id varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '多租户标识' AFTER type;
ALTER TABLE jimu_report
ADD COLUMN tenant_id varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '多租户标识' AFTER js_str;


SET FOREIGN_KEY_CHECKS = 1;
10 changes: 10 additions & 0 deletions jimureport-example/db/jimureport.mysql5.7.create.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1622,4 +1622,14 @@ INSERT INTO `tmp_report_data_income` VALUES ('中石油控股或有控股权', 3
INSERT INTO `tmp_report_data_income` VALUES ('中石油参股', 72062.45, 0.00, 0.00, 0.00, 0.00, 0.00, 72062.75);
INSERT INTO `tmp_report_data_income` VALUES ('非中石油', 1486526.90, 212070.72, 0.00, 0.00, 0.00, 226415.09, 1698597.62);

-- ----------------------------
-- 多租户字段
-- ----------------------------
ALTER TABLE jimu_report_data_source
ADD COLUMN tenant_id varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '多租户标识' AFTER connect_times;
ALTER TABLE jimu_dict
ADD COLUMN tenant_id varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '多租户标识' AFTER type;
ALTER TABLE jimu_report
ADD COLUMN tenant_id varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '多租户标识' AFTER js_str;

SET FOREIGN_KEY_CHECKS = 1;
2 changes: 1 addition & 1 deletion jimureport-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</repositories>

<properties>
<jimureport.version>1.5.0</jimureport.version>
<jimureport.version>1.5.1</jimureport.version>
<java.version>1.8</java.version>
<minio.version>8.0.3</minio.version>
<!-- DB驱动 -->
Expand Down

0 comments on commit ad88ba1

Please sign in to comment.