using System; using System.Collections.Generic; using System.Text; namespace wms.dto.request.fj { public class FjProductionBackRequest:BaseRequest { /// /// 退料单号 /// public string BillCode { get; set; } /// /// 操作类型(1退料/2余料(退料不传工字轮信息,只传点位)) /// public string BusType { get; set; } /// /// 仓库编码 /// public string WareCode { get; set; } /// /// 机台号 /// public string WbCode { get; set; } } public class FjProductionBackRequestItem { /// /// 工字轮条码 /// public string SpoolCode { get; set; } /// /// 材料号 /// public string MatBarCode { get; set; } /// /// 物料编码 /// public string MatCode { get; set; } /// /// 类型 /// 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 string SilkType { get; set; } } }