using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace WMS.Entity.BllCheckEntity
{
///
///盘点记录表
///
[SugarTable("BllStockCheckLog")]
public class BllStockCheckLog:BaseEntity
{
///
/// Desc:盘点单号
/// Default:
/// Nullable:True
///
public string CRNo {get;set;}
///
/// Desc:托盘号
/// Default:
/// Nullable:True
///
public string PalletNo {get;set;}
///
/// Desc:箱码
/// Default:
/// Nullable:True
///
public string BoxNo {get;set;}
///
/// Desc:盒码
/// Default:
/// Nullable:True
///
public string BoxNo2 {get;set;}
///
/// Desc:支码
/// Default:
/// Nullable:True
///
public string BoxNo3 {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 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 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:
/// Nullable:True
///
public DateTime? CheckDate {get;set;}
///
/// Desc:盘点人
/// Default:
/// Nullable:True
///
public int? CheckUserId {get;set;}
}
}