using DapperORMCore.Model.CoreModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace NXWMS.Model.AppModels.Result.NXPDA.OutStock
{
///
/// 到货通知单条码结果
///
public class InArrivalNoticeBarCodeResult
{
///
/// 质检明细明细Id
///
public int? InspectionDtlId { get; set; }
///
/// 物品编码
///
public string MaterielCode { get; set; }
///
/// 物品名称
///
public string MaterielName { get; set; }
///
/// 规格型号
///
public string SpecsModel { get; set; }
///
/// 批号
///
public string BatchNo { get; set; }
///
/// 到货数量
///
public int? ArrivalQTY { get; set; }
///
/// 收货数量
///
public int? ReceiptQTY { get; set; }
///
/// 二级容器
///
public string TwoVessel { get; set; }
///
/// 库位编码
///
public string BinCode { get; set; }
///
/// 库位名称
///
public string BinName { get; set; }
///
/// 单位编码
///
public string UnitCode { get; set; }
///
/// 单位名称
///
public string UnitName { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}
}