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; } /// /// 类型(1:湿拉半成品;2:芯股) /// public string BusType { get; set; } /// /// 工字轮型号 /// public string SpoolType { get; set; } /// /// 生产日期 /// public DateTime 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; } } }