You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
502 B
24 lines
502 B
10 months ago
|
using Win_in.Sfs.Shared.Domain;
|
||
|
|
||
|
namespace Win_in.Sfs.Wms.DataExchange.Domain;
|
||
|
public class InterfaceConfig : SfsAggregateRootBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 接口名称
|
||
|
/// </summary>
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 编码
|
||
|
/// </summary>
|
||
|
public string Code { get; set; }
|
||
|
/// <summary>
|
||
|
/// 是否启用
|
||
|
/// </summary>
|
||
|
public bool Active { get; set; }
|
||
|
/// <summary>
|
||
|
/// 等级
|
||
|
/// </summary>
|
||
|
public int Level { get; set; }
|
||
|
}
|