6 changed files with 92 additions and 27 deletions
@ -1,29 +1,34 @@ |
|||||
{ |
{ |
||||
"App": { |
"App": { |
||||
"Urls": "http://localhost:5000", |
"Urls": "http://localhost:5000", |
||||
"CorsOrigins": "http://localhost:5000" |
"CorsOrigins": "http://localhost:5000" |
||||
}, |
}, |
||||
"ConnectionStrings": { |
"ConnectionStrings": { |
||||
//"Default": "Server=192.168.0.63;Database=ABP;User ID=sa;Password=Microsoft2008", |
//"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", |
//"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", |
//"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", |
//"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", |
"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", |
"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", |
"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", |
"AbpBackgroundJobs": "Server=192.168.0.140;Database=CPAT_WMS_Json_TEST;User ID=sa;Password=Microsoft2008", |
||||
|
|
||||
"AgvInLoc": "A01", |
"AgvInLoc": "A01", |
||||
"AgvOutLoc": "B01" |
"AgvOutLoc": "B01" |
||||
}, |
}, |
||||
"Redis": { |
"Redis": { |
||||
"Configuration": "127.0.0.1" |
"Configuration": "127.0.0.1" |
||||
}, |
}, |
||||
"AuthServer": { |
"AuthServer": { |
||||
"Authority": "http://192.168.0.140:8066", |
"Authority": "http://192.168.0.140:8066", |
||||
"RequireHttpsMetadata": "false", |
"RequireHttpsMetadata": "false", |
||||
"SwaggerClientId": "WmsWebApi_Swagger", |
"SwaggerClientId": "WmsWebApi_Swagger", |
||||
"SwaggerClientSecret": "1q2w3e*" |
"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