mahao
2 years ago
6 changed files with 92 additions and 27 deletions
@ -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