using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.request.fj
{
public class ProductionLeftFeedBackRequest
{
///
/// 退料单号
///
public string BillCode { get; set; }
///
/// 操作类型(/2余料(退料不传工字轮信息,只传点位))
///
public string BusType { get; set; }
///
/// 仓库编码
///
public string WareCode { get; set; }
///
/// 仓库名称
///
public string WareName { get; set; }
///
/// 货位
///
public string LocCode { get; set; }
///
/// 过账凭证号
///
public string ReqId { get; set; }
///
/// 集合
///
public List ListInfo { get; set; }
}
public class ProductionLeftFeedBackRequestItem
{
///
/// 工字轮条码
///
public string SpoolCode { get; set; }
///
/// 材料号
///
public string MatBarCode { get; set; }
}
}