using Admin.NET.Core;
namespace Admin.NET.Application
{
///
/// 库区信息输出参数
///
public class WmsAreaOutput
{
///
/// 名称
///
public string AreaName { get; set; }
///
/// 描述
///
public string AreaDesc { get; set; }
///
/// 状态
///
public CommonStatus AreaStatus { get; set; }
///
/// 分类
///
public AreaType AreaType { get; set; }
///
/// 是否为钢平台
///
public bool IsSteel { get; set; }
///
/// 所属车间
///
public LesWorkShopType WorkShopType { get; set; }
///
/// Id主键
///
public long Id { get; set; }
///
/// 签核状态
///
public IssueState IssueState { get; set; }
}
}