1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| {
| "Logging": {
| "LogLevel": {
| "Default": "Information",
| "Microsoft": "Warning",
| "Microsoft.Hosting.Lifetime": "Information"
| }
| },
| "AllowedHosts": "*",
| //服务器环境
| "ConnectionStrings": {
| "DBServer": "Data Source=121.196.36.24,1533;Initial Catalog=vmes_tf;User ID=sa;Password=xkd@20230101;pooling=false",
| //erp对接配置(T8,T+)
| "ErpPath": "T+",
| //企业编码
| "CompanyCode": "000",
| //企业名称
| "CompanyName": "新凯迪科技股份有限公司",
| //redis企业配置
| "Enterprise": "NewMES",
| //redis数据库链接配置ip
| "RedisConnIp": "127.0.0.1",
| //redis数据库链接配置端口号
| "RedisConnPort": "6379",
| //key失效时间30秒(reids、jwt共用)
| "RedisKeyTimeCont": "7200",
| //session失效时间
| "InProc": "240",
| //Excel导出模板配置IP
| "FileIP": "http://121.196.36.24:8019/",
| //jwtkey
| "SigningKey": "Hello World"
| }
| }
|
|