using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.BZModels.Dto.CP.BillInventoryReportDtos { public partial class BillInventoryReportDto { /// /// Id /// public string Id { get; set; } /// /// DateMonth /// public string DateMonth { get; set; } /// /// 类别 /// public string NameType { get; set; } /// /// BeginQty /// public decimal BeginQty { get; set; } /// /// EndQty /// public decimal EndQty { get; set; } /// /// StockInQty /// public decimal StockInQty { get; set; } /// /// SalesStockOutQty /// public decimal SalesStockOutQty { get; set; } /// /// ProductStockOutQty /// public decimal ProductStockOutQty { get; set; } /// /// 手动出库 /// public decimal ManualStockOutQty { get; set; } /// /// StartTime /// public DateTime StartTime { get; set; } /// /// EndTime /// public DateTime EndTime { get; set; } /// /// Memo /// public string Memo { get; set; } /// /// AddWho /// public string AddWho { get; set; } /// /// EditWho /// public string EditWho { get; set; } /// /// AddTime /// public DateTime AddTime { get; set; } /// /// EditTime /// public DateTime EditTime { get; set; } } public class BillInventoryReportQueryDto : PagerInfo { /// /// DateMonth /// public string DateMonth { get; set; } /// /// 类别 /// public string NameType { get; set; } public DateTime? StartTimeBegin { get; set; } public DateTime? StartTimeEnd { get; set; } public DateTime? EndTimeBegin { get; set; } public DateTime? EndTimeEnd { get; set; } } }