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.
63 lines
2.0 KiB
63 lines
2.0 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
|
|
{
|
|
[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; }
|
|
[NotMapped]
|
|
public string AcceptStatusSelect { get; set; }
|
|
}
|
|
|
|
}
|
|
|