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.
82 lines
3.0 KiB
82 lines
3.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
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; }
|
|
[DisplayName("第一次削减量")]
|
|
public decimal? ReductionQtyOne { get; set; }
|
|
[DisplayName("第二次削减量")]
|
|
public decimal? ReductionQtyTwo { get; set; }
|
|
[DisplayName("第三次削减量")]
|
|
public decimal? ReductionQtyThree { get; set; }
|
|
[DisplayName("第四次削减量")]
|
|
public decimal? ReductionQtyFour { get; set; }
|
|
[DisplayName("第五次削减量")]
|
|
public decimal? ReductionQtyFive { get; set; }
|
|
[NotMapped]
|
|
[DisplayName("单次削减量")]
|
|
public decimal ReductionQty { get; set; } = 0;
|
|
[DisplayName("订货量吨(当前)")]
|
|
public Decimal OrderQtydNow { get; set; }
|
|
[DisplayName("地点")]
|
|
public string Site { get; set; }
|
|
}
|
|
|
|
}
|
|
|