using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Application
{
///
/// 打包信息返回参数
///
public class GroupDiskOutWarehouseOutput
{
///
/// 单据编号
///
public string OrderNo { get; set; }
///
/// 单据小类
///
public string OrderSubclass { get; set; }
///
/// 打包信息list
///
public List GroupDiskOutWarehouseList { get; set; }
}
///
/// 打包信息
///
public class GroupDiskOutWarehouse
{
///
/// 物料编码
///
public virtual string MaterialNo { get; set; }
///
/// 长
///
public int Long { get; set; }
///
/// 宽
///
public int Wide { get; set; }
///
/// 高
///
public int High { get; set; }
}
}