namespace WCS.WorkEngineering.WebApi.Models.AGV.Request
{
///
/// 合金二楼下发AGV入库任务
///
public class zhongTianIntoStockRequest
{
///
/// 物料编码
///
public string matCode { get; set; }
///
/// 工作站编号
///
public string wbCode { get; set; }
///
/// 空/满工字轮入库标记
///
public string inSpoolFull { get; set; }
///
/// 取满补空标记
///
public bool getOutEmpty { get; set; }
///
/// 湿拉上线标记
///
public bool wetInto { get; set; }
///
/// 湿拉特殊上线标记
///
public bool wetIntoSpec { get; set; }
///
/// 湿拉退料入库标记
///
public bool wetIntoReturn { get; set; }
///
/// 湿拉特殊上线点位号
///
public string wetSpecWbCode { get; set; }
///
/// 改手盘标记
///
public string isSurplus { get; set; }
///
/// 返工标记
///
public string isRework { get; set; }
///
/// 材料号
///
public string matNo { get; set; }
///
/// RFID号
///
public string spoolNo { get; set; }
///
/// 质量状态标记
///
public string gradeCode { get; set; }
///
/// 快投标记
///
public string matFast { get; set; }
///
/// 长度
///
public string orderProcessLenOut { get; set; }
///
/// 任务号
///
public string taskNo { get; set; }
///
/// 退料原因
///
public string returnDesc { get; set; }
///
/// 是否锁定
///
public string lockFlag { get; set; }
///
/// 仓位号
///
public string wetIntoBinCode { get; set; }
}
}