using iWare.Wms.Core.Util.LowCode.Dto; using System; namespace iWare.Wms.Application { /// /// 端拾器小车类型信息输出参数 /// public class WmsContainerTypeOutput { /// /// 类型编码 /// public string WareContainerTypeCode { get; set; } /// /// 类型名称 /// public string WareContainerTypeName { get; set; } /// /// 长 /// public decimal Length { get; set; } /// /// 高 /// public decimal Height { get; set; } /// /// 宽 /// public decimal Width { get; set; } /// /// 可入库位类型 /// public string LocationType { get; set; } /// /// 备注 /// public string Remarks { get; set; } /// /// 状态 /// public iWare.Wms.Core.CommonStatus Status { get; set; } /// /// Id主键 /// public long Id { get; set; } } }