using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.request.hj
{
///
/// 湿拉生产退料/余料反馈请求
///
public class WetLineBackInFeedBackRequest
{
/////
///// 仓库编码
/////
//public string WareCode { get; set; }
/////
///// 仓库名称
/////
//public string WareName { get; set; }
/////
///// 业务类型
/////
//public string BusType { get; set; }
///
/// 反馈信息列表
///
public List ListInfo { get; set; }
}
public class WetLineBackInFeedBackRequestItem
{
///
/// RFID值
///
public string RFID { get; set; }
///
/// 材料号
///
public string MatBarCode { get; set; }
///
/// 物料编码
///
public string MatCode { get; set; }
///
/// 重量
///
public decimal Weight { get; set; }
///
/// 货位编码
///
public string LocCode { get; set; }
///
/// 仓库编码
///
public string WareCode { get; set; }
///
/// 仓库名称
///
public string WareName { get; set; }
///
/// 业务类型
///
public string BusType { get; set; }
}
}