namespace WX.CRM.Model.Entity { using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.VIEW_BAS_INNERUSER")] public partial class VIEW_BAS_INNERUSER { [Key] [Column(Order = 0)] public decimal PKID { get; set; } [Key] [Column(Order = 1)] public decimal EID { get; set; } [Key] [Column(Order = 2)] [StringLength(20)] public string UNAME { get; set; } public decimal? GID { get; set; } [Key] [Column(Order = 3)] [StringLength(50)] public string GNAME { get; set; } } }