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.InStock
{
///
///
///
public class InInspectionPalletResult
{
///
/// 物品编码
///
public string MaterielCode { get; set; }
///
/// 物品名称
///
public string MaterielName { get; set; }
///
/// 质检结果
///
public string Result { get; set; }
///
/// 状态
///
public string QTY { get; set; }
///
/// 二级容器
///
public string TwoVessel { get; set; }
}
}