using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.Entity { /// /// 查询 /// public class ICSQueryModel { /// /// 物料 /// public string Material { get; set; } /// /// 库位 /// public string LocationCode { get; set; } /// /// 条码 /// public string BarCode { get; set; } /// /// 站点 /// public string WorkPoint { get; set; } } }