using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.Entitys.Basic
{
///
/// 根据卸货区获取车牌号、磅单号、卸货区中已码盘的信息
///
public class PoundTrayEntity
{
///
/// 磅单号
///
public string CN_S_POUND_NO { get; set; }
///
/// 车牌号
///
public string CN_S_CAR_NO { get; set; }
///
/// 物料类别
///
public string CN_S_ITEM_TYPE { get; set; }
///
/// 订单信息
///
public List lstTrayEncode { get; set; }
}
///
/// 库区中货位上的笼箱信息
///
public class TrayEncodeInfo
{
///
/// 笼箱码
///
public string CN_S_TRAY_CODE { get; set; }
///
/// 货位码
///
public string CN_S_LOCATION_CODE { get; set; }
///
/// 物料代码
///
public string CN_S_ITEM_CODE { get; set; }
///
/// 物料名称
///
public string CN_S_ITEM_NAME { get; set; }
///
/// 物料单位
///
public string CN_S_MEASURE_UNIT { get; set; }
///
/// 笼箱重量
///
public string CN_S_IN_AREA_CODE { get; set; }
///
/// 笼箱存储状态
///
public string CN_S_USE_STATE { get; set; }
///
/// 数量
///
public decimal CN_F_QUANTITY { get; set; }
///
/// 标记主笼副笼
///
public string CN_S_TRAY_FLAG { get; set; }
///
/// 标记主笼副笼
///
public string CN_S_TRAY_REMARK { get; set; }
}
}