using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { public class LocatModel { /// /// 托盘号 /// public string PalletNo { get; set; } /// /// 仓库号 /// public string HouseNo { get; set; } /// /// 巷道号 /// public string RoadwayNo { get; set; } } }