using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace WMS.Entity.BllAsnEntity
{
///
///入库单总表/到货通知单
///
[SugarTable("BllArrivalNotice")]
public class BllArrivalNotice:BaseEntity
{
///
/// Desc:入库单号
/// Default:
/// Nullable:False
///
public string ASNNo {get;set;}
///
/// Desc:单据类型
/// Default:
/// Nullable:True
///
public string Type {get;set;}
///
/// Desc:状态
/// Default:0
/// Nullable:True
///
public string Status {get;set;}
///
/// Desc:来源
/// Default:
/// Nullable:True
///
public string Origin {get;set;}
///
/// Desc:客户编号
/// Default:
/// Nullable:True
///
public string CustomerNo {get;set;}
///
/// Desc:客户名称
/// Default:
/// Nullable:True
///
public string CustomerName {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;}
///
/// 完成时间
///
public DateTime? CompleteTime { get; set; }
///
/// 上游系统单号
///
public string OrderCode { get; set; }
}
}