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 { [Serializable] public partial class TB_FORECAST : RecordEntity { /// /// UID /// [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public long UID { get; set; } /// /// 零件编号 /// [StringLength(50)] public string PartCode { get; set; } /// /// 供应商编号 /// public string VendId { get; set; } /// /// N+1 /// public decimal MonthQty1 { get; set; } /// /// N+2 /// public decimal MonthQty2 { get; set; } /// /// N+3 /// public decimal MonthQty3 { get; set; } /// /// 状态 /// public int State { get; set; } /// /// 地点 /// public string Site { get; set; } /// /// 月份 /// public string Month { get; set; } 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; } } }