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.
 
 
 
 
 

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