using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { [Table("UPDEV.WW_HHUSER")] public class WW_HHUSER { [Key] public string USERID { get; set; } public string UNAME { get; set; } public string EXINFO { get; set; } } }