using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CK.SCP.Models.ScpEntity { public class V_TB_FORECAST : RecordEntity { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public long UID { get; set; } [StringLength(50)] public string PartCode { get; set; } [StringLength(50)] public string VendId { get; set; } public int? State { get; set; } public decimal MonthQty1 { get; set; } public decimal MonthQty2 { get; set; } public decimal MonthQty3 { get; set; } [StringLength(50)] public string State_DESC { get; set; } [StringLength(50)] public string Site { get; set; } public string Month { get; set; } [StringLength(50)] public string PoType { get; set; } public int? PoLine { get; set; } [StringLength(50)] public string Specifications { get; set; } public string Unit { get; set; } public decimal? Qty { get; set; } public string ProductStatus { get; set; } public string IsUrgent { get; set; } public DateTime? ShippdedTime { get; set; } public string ShippdedPlace { get; set; } public decimal? MonthQty { get; set; } public string Ontime { get; set; } public string Datetime { get; set; } [StringLength(50)] public string Remark { get; set; } } }