namespace WX.CRM.Model.Entity { using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.IMP_RESIMPORTID")] public partial class IMP_RESIMPORTID { [Key] [Column(Order = 0)] public decimal IMPORTID { get; set; } [Key] [Column(Order = 1)] [StringLength(50)] public string IMPORTDATA { get; set; } } }