//------------------------------------------------------------------------------ // // 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("WmsInboundOrderDtbl")] public partial class WmsInboundOrderDtbl : StringEntity { public WmsInboundOrderDtbl() { this.AsnStatus= 0; this.GoodsId= string.Empty; this.GoodsBatch= string.Empty; this.QualityFlg= string.Empty; this.OrderNum= 0; this.InNum= 0; this.LeaveNum= 0; this.HoldNum= 0; this.ProdDate= string.Empty; this.ExpireDate= string.Empty; this.OwnerId= string.Empty; this.Remark= string.Empty; this.CreateTime= DateTime.Now; this.CreateUserId= string.Empty; this.CreateUserName= string.Empty; this.UpdateTime= DateTime.Now; this.UpdateUserId= string.Empty; this.UpdateUserName= string.Empty; } /// /// 订单ID /// [Description("订单ID")] [Browsable(false)] public string OrderId { get; set; } /// /// 含税单价 /// [Description("含税单价")] public decimal? Price { get; set; } /// /// 无税单价 /// [Description("无税单价")] public decimal? PriceNoTax { get; set; } /// /// 是否收货中(0:非收货中,1:收货中) /// [Description("是否收货中")] public bool InStockStatus { get; set; } /// /// 到货状况(SYS_GOODSARRIVESTATUS) /// [Description("到货状况")] public int AsnStatus { get; set; } /// /// 商品编号 /// [Description("商品编号")] [Browsable(false)] public string GoodsId { get; set; } /// /// 商品批号 /// [Description("商品批号")] public string GoodsBatch { get; set; } /// /// 品质(SYS_QUALITYFLAG) /// [Description("品质")] public string QualityFlg { get; set; } /// /// 通知数量 /// [Description("通知数")] public decimal OrderNum { get; set; } /// /// 到货数量 /// [Description("到货数")] public decimal InNum { get; set; } /// /// 剩余数量 /// [Description("剩余数")] public decimal LeaveNum { get; set; } /// /// 占用数量 /// [Description("占用数")] [Browsable(false)] public decimal HoldNum { get; set; } /// /// 生产日期 /// [Description("生产日期")] public string ProdDate { get; set; } /// /// 失效日期 /// [Description("失效日期")] public string ExpireDate { get; set; } /// /// 税率 /// [Description("税率")] public decimal? TaxRate { get; set; } /// /// 货主编号 /// [Description("货主编号")] [Browsable(false)] public string OwnerId { get; set; } /// /// 备注 /// [Description("备注")] [Browsable(false)] public string Remark { 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; } } }