namespace HH.WCS.Mobox3.RiDong.dto;
///
/// 货品信息
///
public class MoBoxInputDetailDto
{
///
/// 仓库编号
///
public string wh_code { get; set; }
///
/// 库区编码
///
public string area_code { get; set; }
///
/// 货品编码
///
public string item_code { get; set; }
///
/// 货品名称
///
public string item_name { get; set; }
///
/// 数量
///
public int qty { get; set; }
}