using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace WMS.Entity.BllCheckEntity
{
///
///盘点明细表
///
[SugarTable("BllStockCheckDetail")]
public class BllStockCheckDetail:BaseEntity
{
///
/// Desc:单号
/// Default:
/// Nullable:True
///
public string CRNo {get;set;}
///
/// Desc:托盘号
/// Default:
/// Nullable:True
///
public string PalletNo {get;set;}
///
/// Desc:库存数量
/// Default:
/// Nullable:True
///
public int? Qty {get;set;}
///
/// Desc:实际数量
/// Default:
/// Nullable:True
///
public int? RealQty {get;set;}
///
/// Desc:盘点结果
/// Default:0:正常 1:盘亏 2:盘盈 3:实物不符
/// Nullable:True
///
public int? CheckResult {get;set;}
///
/// Desc:执行标志
/// Default:0:待下发 1:任务下发 2:待盘点 3:已完成 4已调整
/// Nullable:True
///
public int? Status {get;set;}
///
/// Desc:批次号
/// Default:
/// Nullable:True
///
public string LotNo {get;set;}
///
/// Desc:批次描述
/// Default:
/// Nullable:True
///
public string LotText {get;set;}
///
/// Desc:供货批次
/// Default:
/// Nullable:True
///
public string SupplierLot {get;set;}
///
/// Desc:物料编码
/// Default:
/// Nullable:True
///
public string SkuNo {get;set;}
///
/// Desc:物料名称
/// Default:
/// Nullable:True
///
public string SkuName {get;set;}
///
/// Desc:规格
/// Default:
/// Nullable:True
///
public string Standard {get;set;}
///
/// Desc:任务号
/// Default:
/// Nullable:True
///
public string TaskNo { get; set; }
///
/// 自定义列1
///
public string UDF1 { get; set; }
///
/// 自定义列2
///
public string UDF2 { get; set; }
///
/// 自定义列3
///
public string UDF3 { get; set; }
}
}