using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CK.SCP.Models.ScpEntity { using System; using System.Collections.Generic; [Serializable] public partial class TB_ASK:RecordEntity { [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public long UID { get; set; } [Key] [StringLength(50)] public string AskBillNum { get; set; } [StringLength(50)] public string PoBillNum { get; set; } [StringLength(50)] public string VendId { get; set; } [StringLength(50)] public string Site { get; set; } public int State { get; set; } [StringLength(200)] public string Remark { get; set; } public int ModType { get; set; } public DateTime BeginTime {get;set;} public DateTime? EndTime {get;set;} public string ErpBillNum{get;set;} public string Buyer {get;set;} public string BuyerPhone { get; set; } [StringLength(50)] public string ReceivedPort { get; set; } public string SubSite { get; set; } public string Extend1 { get; set; } public string Extend2 { get; set; } public string Extend3 { get; set; } } }