using Admin.NET.Core; namespace Admin.NET.Application { /// /// 库口表输出参数 /// public class WmsWarehouseEntranceOutput { /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 类型-1.入库口_2.出库口 /// public WarehouseEntranceEnum Type { get; set; } /// /// 所属车间 /// public LesWorkShopType LesWorkShopType { get; set; } /// /// 所属巷道 /// public int AffiliatedRoadway { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 状态 /// public CommonStatus Status { get; set; } /// /// Id主键 /// public long Id { get; set; } } }