using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.request.hj
{
public class CopperLineAgvTaskStockOutToIWmsRequest
{
///
/// 物料编码
///
public string matCode { get; set; }
///
/// 工作站编号(机台号、立库点位编号)
///
public string wbCode { get; set; }
///
/// 空/满工字轮入库标记(空工字轮:0,满工字轮:1,半工字轮:2)
///
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; }
}
}