Merge remote-tracking branch 'origin/master' into master
Showing
7 changed files
with
22 additions
and
6 deletions
... | @@ -249,6 +249,12 @@ | ... | @@ -249,6 +249,12 @@ |
249 | <artifactId>hutool-all</artifactId> | 249 | <artifactId>hutool-all</artifactId> |
250 | <version>5.6.0</version> | 250 | <version>5.6.0</version> |
251 | </dependency> | 251 | </dependency> |
252 | |||
253 | <dependency> | ||
254 | <groupId>com.github.jsqlparser</groupId> | ||
255 | <artifactId>jsqlparser</artifactId> | ||
256 | <version>1.4</version> | ||
257 | </dependency> | ||
252 | </dependencies> | 258 | </dependencies> |
253 | 259 | ||
254 | <build> | 260 | <build> | ... | ... |
... | @@ -39,8 +39,8 @@ public class CodeGenerator { | ... | @@ -39,8 +39,8 @@ public class CodeGenerator { |
39 | DataSourceConfig dsc = new DataSourceConfig(); | 39 | DataSourceConfig dsc = new DataSourceConfig(); |
40 | dsc.setUrl("jdbc:oracle:thin:@192.168.2.218:1521:orcl"); | 40 | dsc.setUrl("jdbc:oracle:thin:@192.168.2.218:1521:orcl"); |
41 | dsc.setDriverName("oracle.jdbc.driver.OracleDriver"); | 41 | dsc.setDriverName("oracle.jdbc.driver.OracleDriver"); |
42 | dsc.setUsername("dangan1"); | 42 | dsc.setUsername("bdcdangan"); |
43 | dsc.setPassword("dangan1"); | 43 | dsc.setPassword("bdcdangan"); |
44 | dsc.setDbType(DbType.ORACLE); | 44 | dsc.setDbType(DbType.ORACLE); |
45 | mpg.setDataSource(dsc); | 45 | mpg.setDataSource(dsc); |
46 | //3、包的配置 | 46 | //3、包的配置 | ... | ... |
... | @@ -24,7 +24,6 @@ import java.util.Map; | ... | @@ -24,7 +24,6 @@ import java.util.Map; |
24 | @RequestMapping("/SysDict") | 24 | @RequestMapping("/SysDict") |
25 | public class SysDictController { | 25 | public class SysDictController { |
26 | 26 | ||
27 | |||
28 | @Autowired | 27 | @Autowired |
29 | SysDictService sysDictService; | 28 | SysDictService sysDictService; |
30 | 29 | ... | ... |
... | @@ -55,6 +55,12 @@ public class SysDict implements Serializable { | ... | @@ -55,6 +55,12 @@ public class SysDict implements Serializable { |
55 | @ApiModelProperty(value = "类型ID") | 55 | @ApiModelProperty(value = "类型ID") |
56 | private String typeId; | 56 | private String typeId; |
57 | 57 | ||
58 | /** | ||
59 | * 状态(0:禁用 1:启用)默认1 | ||
60 | */ | ||
61 | @ApiModelProperty(value = "状态(0:禁用 1:启用)默认1") | ||
62 | private String state; | ||
63 | |||
58 | private List<SysDict> children; | 64 | private List<SysDict> children; |
59 | 65 | ||
60 | private static final long serialVersionUID = 1L; | 66 | private static final long serialVersionUID = 1L; | ... | ... |
... | @@ -61,6 +61,12 @@ public class GetSysDictParentVo { | ... | @@ -61,6 +61,12 @@ public class GetSysDictParentVo { |
61 | @ApiModelProperty(value = "序号") | 61 | @ApiModelProperty(value = "序号") |
62 | private Integer rowNum; | 62 | private Integer rowNum; |
63 | 63 | ||
64 | /** | ||
65 | * 状态(0:禁用 1:启用)默认1 | ||
66 | */ | ||
67 | @ApiModelProperty(value = "状态(0:禁用 1:启用)默认1") | ||
68 | private String state; | ||
69 | |||
64 | private List<SysDict> children; | 70 | private List<SysDict> children; |
65 | 71 | ||
66 | private static final long serialVersionUID = 1L; | 72 | private static final long serialVersionUID = 1L; | ... | ... |
... | @@ -4,7 +4,6 @@ package com.pashanhoo.file.controller; | ... | @@ -4,7 +4,6 @@ package com.pashanhoo.file.controller; |
4 | import com.pashanhoo.catalog.entity.vo.DgArchivesCatalogWithFileVO; | 4 | import com.pashanhoo.catalog.entity.vo.DgArchivesCatalogWithFileVO; |
5 | import com.pashanhoo.common.Result; | 5 | import com.pashanhoo.common.Result; |
6 | import com.pashanhoo.file.entity.vo.AddDgFileRequest; | 6 | import com.pashanhoo.file.entity.vo.AddDgFileRequest; |
7 | import com.pashanhoo.file.entity.vo.DgFileListVO; | ||
8 | import com.pashanhoo.file.entity.vo.UpdateDgFileRequest; | 7 | import com.pashanhoo.file.entity.vo.UpdateDgFileRequest; |
9 | import com.pashanhoo.file.entity.vo.DgFileSearchRequest; | 8 | import com.pashanhoo.file.entity.vo.DgFileSearchRequest; |
10 | import com.pashanhoo.file.service.DgFileService; | 9 | import com.pashanhoo.file.service.DgFileService; | ... | ... |
... | @@ -19,8 +19,8 @@ spring: | ... | @@ -19,8 +19,8 @@ spring: |
19 | default-property-inclusion: non_null | 19 | default-property-inclusion: non_null |
20 | datasource: | 20 | datasource: |
21 | driver-class-name: oracle.jdbc.driver.OracleDriver | 21 | driver-class-name: oracle.jdbc.driver.OracleDriver |
22 | username: dangan1 | 22 | username: bdcdangan |
23 | password: dangan1 | 23 | password: bdcdangan |
24 | url: jdbc:oracle:thin:@192.168.2.218:1521:orcl | 24 | url: jdbc:oracle:thin:@192.168.2.218:1521:orcl |
25 | 25 | ||
26 | mybatis-plus: | 26 | mybatis-plus: | ... | ... |
-
Please register or sign in to post a comment