using iWare.Wms.Core.Util.LowCode.Dto; using System; namespace iWare.Wms.Application { /// /// 库位信息输出参数 /// public class WmsPlaceDto { /// /// 所在库区 /// public string WmsAreaAreaname { get; set; } /// /// 编码 /// public string Placecode { get; set; } /// /// 库位状态 /// public iWare.Wms.Core.Enum.PlaceStatus Placestatus { get; set; } /// /// 所在库区 /// public long Areaid { get; set; } /// /// 排 /// public int Rowno { get; set; } /// /// 列 /// public int Columnno { get; set; } /// /// 层 /// public int Layerno { get; set; } /// /// 进深号 /// public int Deepcellno { get; set; } /// /// 巷道 /// public int Aisle { get; set; } /// /// 线号 /// public int Line { get; set; } /// /// 巷道左右 /// public string Aisleside { get; set; } /// /// 是否锁定 /// public iWare.Wms.Core.YesOrNot Islock { get; set; } /// /// /// public iWare.Wms.Core.YesOrNot Isfull { get; set; } /// /// 否正在操作 /// public iWare.Wms.Core.YesOrNot Hastaskdoing { get; set; } /// /// 堆垛机内部的位置 /// public string PositionnoForSrm { get; set; } /// /// 库位X坐标 /// public string Xzb { get; set; } /// /// 库位Y坐标 /// public string Yzb { get; set; } /// /// 库位Z坐标 /// public string Zzb { get; set; } /// /// 库位长度 /// public decimal Length { get; set; } /// /// 库位宽度 /// public decimal Width { get; set; } /// /// 库位高度 /// public decimal Height { get; set; } /// /// 最大承重 /// public decimal Maxweight { get; set; } /// /// 库位高度 /// public iWare.Wms.Core.Enum.Heightlevel Heightlevel { get; set; } /// /// 优先级 /// public int Priority { get; set; } /// /// Id主键 /// public long Id { get; set; } } }