using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.BZModels.Dto.SX.RfidDtos { public class RfidDto { /// /// WarehouseId /// public long WarehouseId { get; set; } /// /// IsStop /// public int IsStop { get; set; } /// /// ContBarCode /// public string ContBarCode { get; set; } /// /// Name /// public string Name { get; set; } /// /// TypeCode /// public string TypeCode { get; set; } /// /// PrintQty /// public int PrintQty { get; set; } /// /// LengthQty /// public decimal LengthQty { get; set; } /// /// WidthQty /// public decimal WidthQty { get; set; } /// /// HighQty /// public decimal HighQty { get; set; } /// /// WeightQty /// public decimal WeightQty { get; set; } public string Id { get; set; } public string Memo { get; set; } public string AddWho { get; set; } public string EditWho { get; set; } public DateTime AddTime { get; set; } public DateTime EditTime { get; set; } } public class RfidQueryDto : PagerInfo { /// /// WarehouseId /// public long WarehouseId { get; set; } /// /// IsStop /// public int IsStop { get; set; } /// /// ContBarCode /// public string ContBarCode { get; set; } /// /// Name /// public string Name { get; set; } /// /// TypeCode /// public string TypeCode { get; set; } /// /// PrintQty /// public int PrintQty { get; set; } /// /// LengthQty /// public decimal LengthQty { get; set; } /// /// WidthQty /// public decimal WidthQty { get; set; } /// /// HighQty /// public decimal HighQty { get; set; } /// /// WeightQty /// public decimal WeightQty { get; set; } public string Id { get; set; } public string Memo { get; set; } public string AddWho { get; set; } public string EditWho { get; set; } public DateTime AddTime { get; set; } public DateTime EditTime { get; set; } } }