mahao
2 years ago
6 changed files with 92 additions and 27 deletions
@ -1,29 +1,34 @@ |
|||
{ |
|||
"App": { |
|||
"Urls": "http://localhost:5000", |
|||
"CorsOrigins": "http://localhost:5000" |
|||
}, |
|||
"ConnectionStrings": { |
|||
//"Default": "Server=192.168.0.63;Database=ABP;User ID=sa;Password=Microsoft2008", |
|||
//"WmsWebApi": "Server=192.168.0.63;Database=CPAT_WMS;User ID=sa;Password=Microsoft2008", |
|||
//"WmsWebApiJson": "Server=192.168.0.63;Database=CPAT_WMS_Json;User ID=sa;Password=Microsoft2008", |
|||
//"AbpBackgroundJobs": "Server=192.168.0.63;Database=CPAT_WMS_Json;User ID=sa;Password=Microsoft2008", |
|||
"App": { |
|||
"Urls": "http://localhost:5000", |
|||
"CorsOrigins": "http://localhost:5000" |
|||
}, |
|||
"ConnectionStrings": { |
|||
//"Default": "Server=192.168.0.63;Database=ABP;User ID=sa;Password=Microsoft2008", |
|||
//"WmsWebApi": "Server=192.168.0.63;Database=CPAT_WMS;User ID=sa;Password=Microsoft2008", |
|||
//"WmsWebApiJson": "Server=192.168.0.63;Database=CPAT_WMS_Json;User ID=sa;Password=Microsoft2008", |
|||
//"AbpBackgroundJobs": "Server=192.168.0.63;Database=CPAT_WMS_Json;User ID=sa;Password=Microsoft2008", |
|||
|
|||
"Default": "Server=192.168.0.140;Database=ABP;User ID=sa;Password=Microsoft2008", |
|||
"WmsWebApi": "Server=192.168.0.140;Database=CPAT_WMS_TEST;User ID=sa;Password=Microsoft2008", |
|||
"WmsWebApiJson": "Server=192.168.0.140;Database=CPAT_WMS_Json_TEST;User ID=sa;Password=Microsoft2008", |
|||
"AbpBackgroundJobs": "Server=192.168.0.140;Database=CPAT_WMS_Json_TEST;User ID=sa;Password=Microsoft2008", |
|||
"Default": "Server=192.168.0.140;Database=ABP;User ID=sa;Password=Microsoft2008", |
|||
"WmsWebApi": "Server=192.168.0.140;Database=CPAT_WMS_TEST;User ID=sa;Password=Microsoft2008", |
|||
"WmsWebApiJson": "Server=192.168.0.140;Database=CPAT_WMS_Json_TEST;User ID=sa;Password=Microsoft2008", |
|||
"AbpBackgroundJobs": "Server=192.168.0.140;Database=CPAT_WMS_Json_TEST;User ID=sa;Password=Microsoft2008", |
|||
|
|||
"AgvInLoc": "A01", |
|||
"AgvOutLoc": "B01" |
|||
}, |
|||
"Redis": { |
|||
"Configuration": "127.0.0.1" |
|||
}, |
|||
"AuthServer": { |
|||
"Authority": "http://192.168.0.140:8066", |
|||
"RequireHttpsMetadata": "false", |
|||
"SwaggerClientId": "WmsWebApi_Swagger", |
|||
"SwaggerClientSecret": "1q2w3e*" |
|||
"AgvInLoc": "A01", |
|||
"AgvOutLoc": "B01" |
|||
}, |
|||
"Redis": { |
|||
"Configuration": "127.0.0.1" |
|||
}, |
|||
"AuthServer": { |
|||
"Authority": "http://192.168.0.140:8066", |
|||
"RequireHttpsMetadata": "false", |
|||
"SwaggerClientId": "WmsWebApi_Swagger", |
|||
"SwaggerClientSecret": "1q2w3e*" |
|||
}, |
|||
"CustomConfig": { |
|||
"OtherZllConfig": { |
|||
"ErnamFilters": [ "1023", "1024" ] |
|||
} |
|||
} |
|||
} |
|||
|
@ -0,0 +1,13 @@ |
|||
namespace WmsWebApi.Options |
|||
{ |
|||
/// <summary>
|
|||
/// 自定义配置选项
|
|||
/// </summary>
|
|||
public class CustomConfigOptions |
|||
{ |
|||
/// <summary>
|
|||
/// 其他领物料配置
|
|||
/// </summary>
|
|||
public OtherZllConfigOptions OtherZllConfig { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,15 @@ |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WmsWebApi.Options |
|||
{ |
|||
/// <summary>
|
|||
/// 其他领物料配置选项
|
|||
/// </summary>
|
|||
public class OtherZllConfigOptions |
|||
{ |
|||
/// <summary>
|
|||
/// 创建对象的人员名称过滤
|
|||
/// </summary>
|
|||
public List<string> ErnamFilters { get; set; } |
|||
} |
|||
} |
Loading…
Reference in new issue