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.

68 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; }
}
}