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.
62 lines
2.0 KiB
62 lines
2.0 KiB
1 year ago
|
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
|
||
|
{
|
||
|
[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; }
|
||
|
public string ApprovalStatus { get; set; }
|
||
|
[DisplayName("��ǰȷ��״̬")]
|
||
|
public int AcceptStatus { get; set; }
|
||
|
[DisplayName("OA����״̬")]
|
||
|
public string OASTATUS { get; set; }
|
||
|
|
||
|
[DisplayName("�����ճ�����")]
|
||
|
public DateTime ItemdeliveryDate { get; set; }
|
||
|
[DisplayName("����������")]
|
||
|
public string CreatedByDesc { get; set; }
|
||
|
[DisplayName("������")]
|
||
|
public string CreatedBy { get; set; }
|
||
|
[DisplayName("�����˵绰")]
|
||
|
public string CreatedByPhone { get; set; }
|
||
|
[DisplayName("״̬")]
|
||
|
public string Ctype { get; set; }
|
||
|
[DisplayName("��Ӧ�̵���ϵ�绰")]
|
||
|
public string FIRSTTELNO { get; set; }
|
||
|
[DisplayName("��ǰ״̬")]
|
||
|
public string State_DESC { get; set; }
|
||
|
[DisplayName("��������")]
|
||
|
public string CType_DESC { get; set; }
|
||
|
[NotMapped]
|
||
|
public DateTime DocDateBegin { get; set; }
|
||
|
[NotMapped]
|
||
|
public DateTime DocDateEnd { get; set; }
|
||
|
[NotMapped]
|
||
|
public List<string> UserInVendIds { get; set; }
|
||
|
}
|
||
|
|
||
|
}
|