using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Entity { public class InventoryInfoGetModel { /// /// 开始时间 /// public DateTime BeginTime { get; set; } /// /// 结束时间 /// public DateTime EndTime { get; set; } /// /// 物料编码 /// public string Itemcode { get; set; } } }