using System; using System.Collections.Generic; using System.Text; namespace Model.ModelVm.SysVm { /// /// 添加巷道使用记录Vm /// public class AddRoadwayUseLogVm { /// /// 仓库号 /// public string WareHouseNo { get; set; } /// /// 巷道号 /// public string RoadwayNo { get; set; } /// /// 储位号 /// public string LocateNo { get; set; } /// /// 排 /// public int Row { get; set; } /// /// 列 /// public int Column { get; set; } /// /// 层 /// public int Layer { get; set; } /// /// 深度 /// public string Depth { get; set; } } }