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.
 
 
 
 
 

64 lines
2.2 KiB

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 partial class V_TB_MAXPO_DETAIL
{
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Key]
public long UID { get; set; }
[Column(Order = 0)]
[StringLength(50)]
public string PoBillNum { get; set; }
public string PartCode { get; set; }
public string PartNumber { get; set; }
public string Texture { get; set; }
public string Model { get; set; }
public string Finprspec { get; set; }
public string TechStandard { get; set; }
public decimal MinordQty { get; set; }
public decimal Singlecon { get; set; }
public decimal OrderQtyd { get; set; }
public decimal OrderQtykg { get; set; }
public decimal OrderNumber { get; set; }
public string forecastone { get; set; }
public string forecasttwo { get; set; }
public string forecastthree { get; set; }
public string forecastfour { get; set; }
public string forecastfive { get; set; }
public string forecastsix { get; set; }
public string Matermanu { get; set; }
public decimal BomQty { get; set; }
public string PartDesc2 { get; set; }
public int PoLine { get; set; }
public decimal SurplusQty { get; set; }
public string VendId { get; set; }
public string ContractMonth { get; set; }
public decimal AnQty { get; set; }
public decimal AsnQty { get; set; }
public decimal RecQty { get; set; }
public string CreateUser { get; set; }
[NotMapped]
public DateTime? BeginTime { get; set; }
[NotMapped]
public DateTime? EndTime { get; set; }
public DateTime? CreateTime { get; set; }
public string VendName { get; set; }
public decimal ReceQty { get; set; }
public decimal ReturnQty { get; set; }
public bool IsDeleted { get; set; }
}
}