namespace CK.SCP.Models.ScpEntity { using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Serializable] public partial class TB_ASK_DETAIL:RecordEntity { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public long UID { get; set; } [StringLength(50)] public string AskBillNum { get; set; } [StringLength(50)] public string PoBillNum { get; set; } public int PoLine { get; set; } [StringLength(50)] public string PartCode { get; set; } public decimal AskQty { get; set; } public decimal ShippedQty { get; set; } [Column(TypeName = "money")] public decimal Price { get; set; } public decimal ReceivedQty { get; set; } [Column(TypeName = "money")] public decimal TempQty { get; set; } public Nullable BeginTime { get; set; } public Nullable EndTime { get; set; } [StringLength(50)] public string PoUnit { get; set; } [StringLength(50)] public string LocUnit { get; set; } public decimal PackQty { get; set; } public decimal UnConv { get; set; } [StringLength(50)] public string DockCode { get; set; } public int State { get; set; } [StringLength(200)] public string Remark { get; set; } public string Currency { get; set; } public string ReceivedPort { get; set; } public decimal? ReduceQty { get; set; } } }