using iWare.Wms.Core.Util.LowCode.Dto; using System; namespace iWare.Wms.Application { /// /// 库位类型输出参数 /// public class WmsLocationTypeOutput { /// /// 库位类型编码 /// public string WareLocationTypeCode { get; set; } /// /// 库位类型名称 /// public string WareLocationTypeName { get; set; } ///// ///// 状态 ///// //public iWare.Wms.Core.CommonStatus Status { get; set; } ///// ///// 备注 ///// //public string Remark { get; set; } /// /// 库位长度 /// public decimal Length { get; set; } /// /// 库位宽度 /// public decimal Width { get; set; } /// /// 库位高度 /// public decimal Height { get; set; } ///// ///// 最大承重 ///// //public decimal MaxWeight { get; set; } ///// ///// Id主键 ///// //public long Id { get; set; } } }