using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace WMS.Entity.DataEntity
{
///
///库存明细表
///
[SugarTable("DataStockDetail")]
public class DataStockDetail:BaseEntity
{
///
/// 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 int? Qty {get;set;}
///
/// Desc:锁定数量
/// Default:
/// Nullable:True
///
public int? LockQty {get;set;}
///
/// Desc:冻结数量
/// Default:
/// Nullable:True
///
public int? FrozenQty {get;set;}
///
/// Desc:可抽检数量
/// Default:
/// Nullable:True
///
public int? InspectQty { get; set; }
///
/// Desc:入库单号
/// Default:
/// Nullable:True
///
public string ASNNo {get;set;}
///
/// Desc:入库明细号
/// Default:
/// Nullable:True
///
public int? ASNDetailNo {get;set;}
///
/// Desc:所属仓库
/// Default:
/// Nullable:False
///
public string WareHouseNo {get;set;}
///
/// Desc:所属巷道
/// Default:
/// Nullable:True
///
public string RoadwayNo {get;set;}
///
/// Desc:所属区域
/// Default:
/// Nullable:True
///
public string AreaNo {get;set;}
///
/// Desc:储位地址
/// Default:
/// Nullable:True
///
public string LocatNo {get;set;}
///
/// Desc: 托盘号
/// Default:
/// Nullable:True
///
public string PalletNo {get;set;}
///
/// Desc:二级托盘号
/// Default:
/// Nullable:True
///
public string PalletNo2 {get;set;}
///
/// Desc:三级托盘号
/// Default:
/// Nullable:True
///
public string PalletNo3 {get;set;}
///
/// 托盘类型(有无子托)0||空||null:无子托盘1:有子托盘
///
public string PalletType { get; set; }
///
/// Desc:完成时间
/// Default:
/// Nullable:True
///
public DateTime? CompleteTime {get;set;}
///
/// Desc:生产时间
/// Default:
/// Nullable:True
///
public DateTime? ProductionTime {get;set;}
///
/// Desc:过期时间
/// Default:
/// Nullable:True
///
public DateTime? ExpirationTime {get;set;}
///
/// Desc:状态
/// Default:0:待分配 1:部分分配 2:已分配 3:盘点锁定 4:移库锁定
/// Nullable:True
///
public string Status {get;set;}
///
/// Desc:检验标记 是否抽检箱 0:否 1:是
/// Default:0
/// Nullable:True
///
public string InspectMark {get;set;}
///
/// Desc:零托标记 是否零托 0:否 1:是
/// Default:
/// Nullable:True
///
public string BitPalletMark {get;set;}
///
/// Desc:质量状态 0:待检验 1:检验合格 2:不合格 4:放置期
/// Default:
/// Nullable:True
///
public string InspectStatus {get;set;}
///
/// Desc:复检日期
/// Default:
/// Nullable:True
///
public DateTime? InspectTime {get;set;}
///
/// Desc:包装编号
/// Default:
/// Nullable:True
///
public string PackagNo {get;set;}
///
/// Desc:是否裹包
/// Default:
/// Nullable:True
///
public string IsBale {get;set;}
///
/// Desc:是否打带
/// Default:
/// Nullable:True
///
public string IsBelt {get;set;}
///
/// 所属巷道(名称)
///
//public string RoadwayName { get; set; }
///
/// Desc:备注
/// Default:
/// Nullable:True
///
public string Demo { get; set; }
}
}