using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Syc.Basic.Web.WMS.Dto { public class DownSilkDto { public int Id { get; set; } //条码 public string Code { get; set; } //名称 public string Name { get; set; } //颜色 public string Color { get; set; } //配方 public string Type { get; set; } //净重 public double? Net_Weight { get; set; } //长度 public string? Length { get; set; } //包装时间 public DateTime? Date { get; set; } //生产批号 public string Lot_No { get; set; } public string Status_Details { get; set; } public int? BoxId { get; set; } public DateTime? Createtime { get; set; } } public class DownBoxDto { public int Id { get; set; } //条码 public string Code { get; set; } //规格 public string Spec { get; set; } //名称 public string Type { get; set; } public string Color { get; set; } //数量 public int? Qty { get; set; } //净重 public double? Net_Weight { get; set; } //毛重 public double? Gross_Weight { get; set; } //生产批号 public string Lot_No { get; set; } //长度 public string? Length { get; set; } //打包时间 public DateTime? Dom_Time { get; set; } //生产日期 public DateTime? Exp_Time { get; set; } public string Mark { get; set; } public DateTime? Create_Time { get; set; } } }