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.

53 lines
1.7 KiB

using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CK.SCP.Models.ScpEntity
{
public partial class TB_MATERIALORDERS
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long UID { get; set; }
[DisplayName("�ɹ�ƾ֤��")]
public string PurdocNO { get; set; }
[DisplayName("�ɹ�ƾ֤��������")]
public string BuyListStrdes { get; set; }
[DisplayName("ƾ֤���ڣ��������ڣ�")]
public DateTime DocDate { get; set; }
[DisplayName("��Ӧ�̴���")]
public string VendorNO { get; set; }
[DisplayName("��Ӧ������")]
public string VendorDesc { get; set; }
[DisplayName("�ɹ����������ջ��ˣ�")]
public string PurgrpDesc { get; set; }
[DisplayName("����״̬ 4=����ͨ��")]
public string ApprovalStatus { get; set; }
[DisplayName("��Ӧ��״̬")]
public int AcceptStatus { get; set; }
[DisplayName("�����ճ�����")]
public DateTime ItemdeliveryDate { get; set; }
[DisplayName("����������")]
public string CreatedByDesc{ get; set; }
[DisplayName("������")]
public string CreatedBy { get; set; }
[DisplayName("״̬")]
public string Ctype { get; set; }
[DisplayName("��Ӧ�̵���ϵ�绰")]
public string FIRSTTELNO { get; set; }
[DisplayName("�绰")]
public string PHONE { get; set; }
[DisplayName("���鴫��")]
public string FAXNUM { get; set; }
[DisplayName("������������")]
public string STAGEDESC { get; set; }
}
}