namespace MES.Service.Dto.webApi; public class DeliveryBarcodeInfo { /// /// 送货单号 /// public string? DeliveryNo { get; set; } /// /// 送货单行内码 /// public string? LineNo { get; set; } /// /// 物料条码 /// public string? SmallBarcode { get; set; } /// /// 物料内码 /// public string? ProductCode { get; set; } /// /// 条码数量 /// public decimal? IncludeQty { get; set; } /// /// 箱条码 /// public string? OuterBarcode { get; set; } /// /// 条码类型 /// public string? BarcodeType { get; set; } /// /// 是否合并 /// public bool? IsMerge { get; set; } /// /// 接口类型 /// public string? Type { get; set; } /// /// 是否尾箱 /// public bool? IsLast { get; set; } /// /// 箱装数 /// public int? PackingQty { get; set; } }