//------------------------------------------------------------------------------ // // 此代码已从模板生成。 // // 手动更改此文件可能导致应用程序出现意外的行为。 // 如果重新生成代码,将覆盖对此文件的手动更改。 // //------------------------------------------------------------------------------ namespace CK.SCP.Models.ScpEntity { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; public partial class TF_PO { public int UID { get; set; } [Key] public string BillNum { get; set; } public string VendId { get; set; } public string OperName { get; set; } public System.DateTime BillTime { get; set; } public string ModType { get; set; } public System.DateTime DueDate { get; set; } public string Contacter { get; set; } public string ShipToSite { get; set; } public string Buyer { get; set; } public string BuyerPhone { get; set; } public int State { get; set; } public string Remark { get; set; } public string ErpBillNum { get; set; } public string MonthBillNo { get; set; } } }