using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace WMS.Entity.BllAsnEntity
{
///
///托盘绑定表
///
[SugarTable("BllPalletBind")]
public class BllPalletBind:BaseEntity
{
///
/// Desc:入库单号
/// Default:
/// Nullable:True
///
public string ASNNo {get;set;}
///
/// Desc:入库明细号
/// Default:
/// Nullable:True
///
public int? ASNDetailNo {get;set;}
///
/// 任务号
///
public string TaskNo { get; set; }
///
/// Desc:储位地址
/// Default:
/// Nullable:True
///
public string LocatNo {get;set;}
///
/// Desc:所属巷道
/// Default:
/// Nullable:True
///
public string RoadwayNo { get; set; }
///
/// Desc:所属仓库
/// Default:
/// Nullable:True
///
public string WareHouseNo { get; set; }
///
/// Desc:托盘号
/// Default:
/// Nullable:False
///
public string PalletNo {get;set;}
///
/// Desc:二级托盘号
/// Default:
/// Nullable:True
///
public string PalletNo2 {get;set;}
///
/// Desc:三级托盘号
/// Default:
/// Nullable:True
///
public string PalletNo3 {get;set;}
///
/// Desc:数量
/// Default:
/// Nullable:False
///
public decimal Qty {get;set;}
///
/// Desc:整托数量
/// Default:
/// Nullable:True
///
public decimal? FullQty {get;set;}
///
/// Desc:状态 2入库完成 3上架完成
/// Default:
/// Nullable:True
///
public string Status {get;set;}
///
/// 类型 0 物料托 1 空托
///
public string Type { get; set; }
///
/// Desc:完成时间
/// Default:
/// Nullable:True
///
public DateTime? CompleteTime {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 DateTime? ProductionTime {get;set;}
///
/// Desc:过期时间
/// Default:
/// Nullable:True
///
public DateTime? ExpirationTime {get;set;}
///
/// Desc:供货批次
/// Default:
/// Nullable:True
///
public string SupplierLot {get;set;}
///
/// Desc:检验标记
/// Default:0
/// Nullable:True
///
public string InspectMark {get;set;}
///
/// Desc:取样数量
/// Default:
/// Nullable:True
///
public decimal? SamplingQty { get; set; }
///
/// Desc:零托标记
/// Default:
/// Nullable:True
///
public string BitPalletMark {get;set;}
///
/// Desc:是否裹包
/// Default:
/// Nullable:True
///
public string IsBale {get;set;}
///
/// Desc:是否打带
/// Default:
/// Nullable:True
///
public string IsBelt {get;set;}
///
/// Desc:备注
/// Default:
/// Nullable:True
///
public string Demo { get; set; }
}
}