using System; using System.Collections.Generic; using System.Text; namespace WMS.Web.Core.Dto { /// /// 列表响应对象 /// public class BoxMarkQueryResponse { /// /// 唯一ID /// public int Id { get; set; } /// /// 箱唛编号 /// public string BillNo { get; set; } /// /// 订单编号 /// public string OrderBillNo { get; set; } /// /// 物料规格型号 /// public string Specifications { get; set; } /// /// 物料编码 /// public string MaterialNumber { get; set; } /// /// 物料名称 /// public string MaterialName { get; set; } /// /// 69条码 /// public string BarCode { get; set; } /// /// 装箱数量 /// public decimal CratingQty { get; set; } /// /// 装箱净重 /// public decimal CratingNetWeightQty { get; set; } /// /// 装箱毛重 /// public decimal CratingGrossWeightQty { get; set; } /// /// 尾箱数量 /// public decimal TailboxQty { get; set; } /// /// 尾箱净重 /// public decimal TailboxNetWeightQty { get; set; } /// /// 尾箱毛重 /// public decimal TailboxGrossWeightQty { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 操作人 /// public string Creator { get; set; } /// /// 创建时间(生成时间) /// public string CreateTime { get; set; } } }