1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- spring:
- sleuth:
- sampler:
- percentage: 1.0
- hystrix:
- strategy:
- enabled: false
- datasource:
- url: jdbc:mysql://192.168.1.201:3306/callcenterdb2.0?useUnicode=true&characterEncoding=utf-8
- username: root
- password: Cs123456
- max-idle: 10
- max-wait: 10000
- min-idle: 5
- initial-size: 5
- validation-query: SELECT 1
- test-on-borrow: false
- test-while-idle: true
- time-between-eviction-runs-millis: 18800
- jdbc-interceptors: ConnectionState;SlowQueryReport(threshold=0)
- #mybatis-plus
- mybatis-plus:
- mapper-locations: classpath*:/mapper/**/*.xml
- #实体扫描,多个package用逗号或者分号分隔
- typeAliasesPackage: ins.platform.po
- #typeEnumsPackage: com.baomidou.springboot.entity.enums
- global-config:
- # 数据库相关配置
- db-config:
- #主键类型 AUTO:"数据库ID自增", INPUT:"用户输入ID",ID_WORKER:"全局唯一ID (数字类型唯一ID)", UUID:"全局唯一ID UUID";
- id-type: id_worker
- #字段策略 IGNORED:"忽略判断",NOT_NULL:"非 NULL 判断"),NOT_EMPTY:"非空判断"
- field-strategy: not_empty
- #驼峰下划线转换
- column-underline: true
- #数据库大写下划线转换
- #capital-mode: true
- #逻辑删除配置
- logic-delete-value: 0
- logic-not-delete-value: 1
- db-type: h2
- #刷新mapper 调试神器
- refresh: true
- #工作流
- bpm:
- rule: WorkOrderNodeRule
- server:
- port: 18020
- address:
- record: /home/record/
- saa:
- power: false
- basePackage: ins/**/po
- #aodFeed:
- # base-url: http://172.42.3.34:9001
- # token: abc
- logging:
- level: debug
- mail:
- server: smtp.qq.com
- sender: 247614188@qq.com
- nickname: 中科软科技
- username: 247614188@qq.com
- password: csdudyxumxnkbhag
- tisson:
- account: 'hb@test1'
- password: 'hbtest114'
- area: '0755'
- sendnumber: '118114'
|