| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # 环境配置
- server:
- port: 9001
- servlet:
- context-path: /api/aiwei
- # condition
- spel:
- scheduling: true # 定时任务是否执行
- multiSource: false # 是否多数据源配置
- spring:
- # database
- datasource:
- hikari:
- connection-init-sql: SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci # SqlServer, Oracle 无需设置类型
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: root
- password: mu123
- url: jdbc:mysql://127.0.0.1:3306/mjava?serverTimezone=Asia/Shanghai&useUnicode=yes&characterEncoding=UTF-8&useSSL=true
- jpa:
- database: MYSQL
- database-platform: org.hibernate.dialect.MySQL57Dialect
- # dingtalk
- dingtalk:
- agentId: 2848797049
- appKey: dingbqy1qugrihao43dl
- appSecret: UUaTKTWgLdduHvMSl0ipm19f_PDarHLHqnpz4vFZXjkkmFNmfWuwoPF1evjIRwvd
- corpId: ding5fcad818b0d9f62c35c2f4657eb6378f
- aesKey:
- token:
- operator: "0249EDD1-754E-44C8-87F0-255B0E32021F" # OA管理员账号
- # aliwork
- aliwork:
- appType: "APP_R5EBUF2FPN3Y8DRF93M4"
- systemToken: "ON566NC1VNIHPANP9TNVHB3TBIWS3E0TUZ5RLF3"
- # teambition
- teambition:
- AppID: 659cf4922fefb4a7ec89137b
- AppSecret: ploT7pyTcEVz91i5IIBZ8Pw7LbrOWPYD
- TenantId: 655f1512ad7db5a6a70cf7b1 # 管理后台 - 企业xx - 企业ID
- OperatorId: 65682c174655a82b4fa04dfe # 公共账号, 需要有操作权限 [x]
- ApiHost: https://tb.awinic.com:443/gateway # 私有部署
|