using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Entity { public class ICSLocation { /// /// 库位 /// public string LocationCode { get; set; } /// /// 库位名称 /// public string LocationName { get; set; } /// /// 仓库 /// public string WarehouseCode { get; set; } /// /// 库存名称 /// public string WarehouseName { get; set; } public string WorkPoint { get; set; } } }