using System; using System.Collections.Generic; using System.Text; namespace WCS.Model.ApiModel.PDAMatBind { public class GetShelfInfoByLocationReturnData { /// /// 工位ID /// public int LocationId { get; set; } = 0; /// /// 位置编码 工位编码 /// public string LocationCode { get; set; } = string.Empty; /// /// 货架ID /// public int? ShelfId { get; set; } = 0; /// /// 货架编码 /// public string ShelfCode { get; set;} = string.Empty; } }