| | |
| | | #server配置 |
| | | server: |
| | | port: 8001 |
| | | port: 9001 |
| | | |
| | | #spring配置 |
| | | spring: |
| | |
| | | eureka: |
| | | client: |
| | | serviceUrl: |
| | | defaultZone: http://120.79.193.119:8001/eureka #集群部署,互相注册 |
| | | defaultZone: http://localhost:9001/eureka #集群部署,互相注册 |
| | | register-with-eureka: false #是否注册到注册中心 单点部署设置false 集群部署设置true |
| | | fetch-registry: false #是否从注册中心拉取注册服务列表 单点部署设置false 集群部署设置true |
| | | server: |
| | |
| | | #server配置 |
| | | server: |
| | | port: 8002 |
| | | port: 9002 |
| | | |
| | | #spring配置 |
| | | spring: |
| | |
| | | client: |
| | | service-url: |
| | | #注册中心单机 |
| | | defaultZone: http://120.79.193.119:8001/eureka |
| | | defaultZone: http://localhost:9001/eureka |
| | | #注册中心集群 |
| | | #defaultZone: http://localhost:8761/eureka,http://localhost:8762/eureka |
| | | #是否注册到注册中心 |
| | |
| | | name: dyh-cust |
| | | #数据源配置 |
| | | datasource: |
| | | url: jdbc:dm://183.2.142.46:9006?schema=gzdyh_dev |
| | | url: jdbc:dm://183.2.142.46:9016?schema=gzdyh_dev |
| | | username: SYSDBA |
| | | password: SYSDBA |
| | | driver-class-name: dm.jdbc.driver.DmDriver |
| | |
| | | name: dyh-disp |
| | | #数据源配置 |
| | | datasource: |
| | | url: jdbc:dm://192.168.3.51:5236?schema=gzdyh_dev |
| | | url: jdbc:dm://localhost:9016?schema=gzdyh_dev |
| | | username: SYSDBA |
| | | password: hugeinfo123 |
| | | password: SYSDBA |
| | | driver-class-name: dm.jdbc.driver.DmDriver |
| | | type: com.alibaba.druid.pool.DruidDataSource |
| | | druid: |
| | |
| | | spring: |
| | | profiles: |
| | | active: |
| | | - dev |
| | | # - test |
| | | # - dev |
| | | - test |
| | | # - prod |
| | | |
| | | devtools: |
| | |
| | | @Data |
| | | public class CaseInfoDetailDto { |
| | | /** |
| | | * 案件名称 |
| | | * 案件名称 公用,title |
| | | */ |
| | | private String caseTitle; |
| | | /** |
| | | * 案件描述 |
| | | * 案件描述 公用,描述 |
| | | */ |
| | | private String caseDesc; |
| | | /** |
| | | * 案件要求 |
| | | * 群众诉求 纠纷类使用 |
| | | */ |
| | | private String caseClaim; |
| | | /** |
| | |
| | | private String caseId; |
| | | |
| | | /** |
| | | * 和解协议 |
| | | * 和解协议 纠纷类时叫和解协议;判决类是叫判决文书 |
| | | */ |
| | | private String agreeContent; |
| | | |
| | | /** |
| | | * 立案依据 |
| | | * 立案依据 判决类使用,相关法条 |
| | | */ |
| | | private String legalBasis; |
| | | } |
| | |
| | | name: dyh-mediate |
| | | #数据源配置 |
| | | datasource: |
| | | url: jdbc:dm://183.2.142.46:9006?schema=gzdyh_dev |
| | | url: jdbc:dm://183.2.142.46:9016?schema=gzdyh_dev |
| | | username: SYSDBA |
| | | password: SYSDBA |
| | | driver-class-name: dm.jdbc.driver.DmDriver |
| | |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <finalName>dyh-sys</finalName> |
| | | <finalName>dyh-sync</finalName> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | |
| | | name: dyh-sync |
| | | #数据源配置 |
| | | datasource: |
| | | url: jdbc:mysql://120.79.193.119:3306/bydyh2.0_v101_prod?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai&nullCatalogMeansCurrent=true |
| | | username: root |
| | | password: hugeinfo123 |
| | | driver-class-name: com.mysql.jdbc.Driver |
| | | url: jdbc:dm://localhost:9016?schema=gzdyh_dev |
| | | username: SYSDBA |
| | | password: SYSDBA |
| | | driver-class-name: dm.jdbc.driver.DmDriver |
| | | type: com.alibaba.druid.pool.DruidDataSource |
| | | druid: |
| | | stat-view-servlet: |
| | | # 关闭 Druid 的统计视图 |
| | | enabled: false |
| | | # 定期检查空闲连接的有效性 |
| | | test-while-idle: true |
| | | # 用来验证数据库连接是否仍然可用的 SQL 查询 |
| | | validation-query: SELECT 1 |
| | | |
| | | #注册中心配置 |
| | | eureka: |
| | |
| | | <addClasspath>true</addClasspath> |
| | | <classpathPrefix>lib/</classpathPrefix> |
| | | <useUniqueVersions>false</useUniqueVersions> |
| | | <mainClass>cn.huge.module.DyhSyncApplication</mainClass> |
| | | <mainClass>cn.huge.module.DyhUtilsApplication</mainClass> |
| | | </manifest> |
| | | <manifestEntries> |
| | | <!--MANIFEST.MF 中 Class-Path 加入资源文件目录 --> |
| | |
| | | #server配置 |
| | | server: |
| | | #端口 |
| | | port: 9009 |
| | | port: 9003 |
| | | |
| | | #Spring配置 |
| | | spring: |
| | |
| | | name: dyh-utils |
| | | #数据源配置 |
| | | datasource: |
| | | url: jdbc:dm://183.2.142.46:9006?schema=gzdyh_dev |
| | | url: jdbc:dm://183.2.142.46:9016?schema=gzdyh_dev |
| | | username: SYSDBA |
| | | password: SYSDBA |
| | | driver-class-name: dm.jdbc.driver.DmDriver |