using System; using System.Collections.Generic; using System.Text; namespace wms.dto.request.fj { public class SpoolMaterialInfoTransRequest:BaseRequest { /// /// 工字轮条码 /// public string SpoolCode { get; set; } /// /// 材料号 /// public string MatBarCode { get; set; } /// /// 物料编码 /// public string? MatCode { get; set; } /// /// 类型(0:湿拉半成品;1:芯股) /// public int BusType { get; set; } /// /// 工字轮型号 /// public string? SpoolType { get; set; } /// /// 生产日期 /// public string ProductDate { get; set; } /// /// 时效期 /// public decimal HoldDuration { get; set; } /// /// 等级 /// public string? Grade { get; set; } /// /// 长度 /// public decimal Length { get; set; } /// /// 重量 /// public decimal Weight { get; set; } /// /// 高度 /// public decimal Height { get; set; } /// /// 是否快投 /// public bool IsFast { get; set; } /// /// 是否退料 /// public bool IsBack { get; set; } /// /// 单/双丝 /// public string? SilkType { get; set; } /// /// 湿拉工序工单号 /// public string BillCode { get; set; } /// /// 生产订单号 /// public string? WorkOrder { get; set; } public string? WbCode { get; set; } /// /// 手/自下盘类型(0自动;1手动) /// public int ManualType { get; set; } = 0; } public class TransTemp { public string Line { get; set; } public string Start { get; set; } public string End { get; set; } } }