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.Condition.NXPDA.OutStock
{
///
/// 提交质检明细
///
public class CommitArrivalNoticeDetailCondition : PageQueryConditionInfo
{
///
/// 物料条码
///
public string MaterielBarCode { get; set; }
///
/// 库位编码
///
public string BinCode { get; set; }
///
/// 批次号
///
public string BatchNo { get; set; }
///
/// 分拣数量
///
public int SortingQTY { get; set; }
///
/// 描述
///
public string Describe { get; set; }
}
}