//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using System; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; using OpenAuth.Repository.Core; namespace OpenAuth.Repository.Domain { /// /// 入库通知单(入库订单) /// [Table("WmsInboundOrderTbl")] public partial class WmsInboundOrderTbl : StringEntity { public WmsInboundOrderTbl() { this.ExternalNo= string.Empty; this.ExternalType= string.Empty; this.Status= 0; this.OrderType= string.Empty; this.GoodsType= string.Empty; this.PurchaseNo= string.Empty; this.StockId= string.Empty; this.OwnerId= string.Empty; this.ShipperId= string.Empty; this.SupplierId= string.Empty; this.ScheduledInboundTime= DateTime.Now; this.Remark= string.Empty; this.TransferType= string.Empty; this.ReturnBoxNum= 0; this.CreateTime= DateTime.Now; this.CreateUserId= string.Empty; this.CreateUserName= string.Empty; this.UpdateTime= DateTime.Now; this.UpdateUserId= string.Empty; this.UpdateUserName= string.Empty; } /// /// 相关单据号 /// [Description("相关单据")] public string ExternalNo { get; set; } /// /// 相关单据类型 /// [Description("相关单据类型")] [Browsable(false)] public string ExternalType { get; set; } /// /// 状态 /// [Description("状态")] public int Status { get; set; } /// /// 入库类型 /// [Description("入库类型")] public string OrderType { get; set; } /// /// 商品类别 /// [Description("商品类别")] public string GoodsType { get; set; } /// /// 采购单号 /// [Description("采购单号")] public string PurchaseNo { get; set; } /// /// 仓库编号 /// [Description("仓库编号")] [Browsable(false)] public string StockId { get; set; } /// /// 货主 /// [Description("货主")] [Browsable(false)] public string OwnerId { get; set; } /// /// 承运人编号 /// [Description("承运人")] [Browsable(false)] public string ShipperId { get; set; } /// /// 供应商编号 /// [Description("供应商编号")] [Browsable(false)] public string SupplierId { get; set; } /// /// 预定入库时间 /// [Description("预定时间")] public System.DateTime? ScheduledInboundTime { get; set; } /// /// 备注 /// [Description("备注")] [Browsable(false)] public string Remark { get; set; } /// /// 有效标志 /// [Description("有效标志")] public bool Enable { get; set; } /// /// 承运方式 /// [Description("承运方式")] public string TransferType { get; set; } /// /// 是否入保税 /// [Description("是否入保税库")] public bool InBondedArea { get; set; } /// /// 销退箱数 /// [Description("销退箱数")] public decimal ReturnBoxNum { get; set; } /// /// 创建时间 /// [Description("创建时间")] public System.DateTime CreateTime { get; set; } /// /// 创建人ID /// [Description("创建人ID")] [Browsable(false)] public string CreateUserId { get; set; } /// /// 创建人 /// [Description("创建人")] public string CreateUserName { get; set; } /// /// 最后更新时间 /// [Description("最后更新")] public System.DateTime? UpdateTime { get; set; } /// /// 最后更新人ID /// [Description("最后更新人ID")] [Browsable(false)] public string UpdateUserId { get; set; } /// /// 最后更新人 /// [Description("最后更新人")] public string UpdateUserName { get; set; } /// /// 所属部门 /// [Description("所属部门")] public string OrgId { get; set; } } }