using System;
using System.Collections.Generic;
using System.Net.NetworkInformation;
using System.Text;
namespace wms.dto.response.sx
{
///
/// 成箱数据统计
///
public class SBoxInfoRes
{
///
/// 工字轮型号
///
public string HWType { get; set; }
///
/// SKU
///
public string SKU { get; set; }
///
/// 机器组
///
public string WbGroup { get; set; }
///
/// 绕向
///
public string Wind { get; set; }
///
/// 箱数
///
public int BoxCount { get; set; }
}
}