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.
 
 
 
 
 

67 lines
2.2 KiB

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CK.SCP.Models.ScpEntity
{
public partial class V_TB_MPO_DETAIL
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long UID { get; set; }
[DisplayName("订单号")]
public string PurdocNO { get; set; }
[DisplayName("申请单号")]
public string PurchaseReqNO { get; set; }
[DisplayName("申请人")]
public string ProposerDesc { get; set; }
[DisplayName("物料号")]
public string MtlNO { get; set; }
public string ApprovalStatus { get; set; }
[DisplayName("当前确认状态")]
public int AcceptStatus { get; set; }
[DisplayName("OA审批状态")]
public string OASTATUS { get; set; }
[DisplayName("物料描述")]
public string Shorttext { get; set; }
[DisplayName("型号规格")]
public string SizeCol { get; set; }
[DisplayName("材料牌号")]
public string Matbrand { get; set; }
[DisplayName("单位")]
public string Unitdes { get; set; }
[DisplayName("数量")]
public decimal Quantity { get; set; }
[DisplayName("价格")]
public decimal PRICE { get; set; }
[DisplayName("金额")]
public decimal NetValue { get; set; }
[DisplayName("采购信息")]
public string PurinfoReCord { get; set; }
[DisplayName("要求到货日期")]
public DateTime ItemDeliveryDate { get; set; }
[DisplayName("科目")]
public string Glaccnum { get; set; }
[DisplayName("状态")]
public string Ctype { get; set; }
[DisplayName("成本中心")]
public string CostCenterDes { get; set; }
[DisplayName("存储地点")]
public string StoreLocation { get; set; }
public string State_DESC { get; set; }
public string CType_DESC { get; set; }
[NotMapped]
public List<string> purdocnolist { get; set; }
public string PURDOCITEMNO { get; set; }
public string Remake { get; set; }
}
}