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.
58 lines
2.0 KiB
58 lines
2.0 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 TB_MAXPO_DETAIL
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public long UID { get; set; }
|
|
|
|
|
|
|
|
[Key]
|
|
[Column(Order =0)]
|
|
public string PoBillNum { get; set; }
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
public string VendId { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public string CreateUser { get; set; }
|
|
|
|
public string ContractNo { get; set; }
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
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 string ContractMonth { get; set; }
|
|
public decimal BomQty { get; set; }
|
|
public int PoLine { get; set; }
|
|
public string Site { get; set; }
|
|
public decimal SurplusQty { get; set; }
|
|
public decimal AsnQty { get; set; }
|
|
public decimal ReceQty { get; set; }
|
|
public bool IsDeleted { get; set; }
|
|
public decimal ReturnQty { get; set; }
|
|
}
|
|
}
|
|
|