You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
935 B
31 lines
935 B
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; }
|
|
public string Month { get; set; }
|
|
[StringLength(50)]
|
|
public string State_DESC { get; set; }
|
|
[StringLength(50)]
|
|
public string Site { get; set; }
|
|
|
|
}
|
|
}
|
|
|