using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("aq_BAS_RIGHT")] public partial class BAS_RIGHT { [Key] [StringLength(4)] public string RIGHTID { get; set; } [Required] [StringLength(50)] public string RNAME { get; set; } public decimal SORTID { get; set; } public DateTime? CTIME { get; set; } public decimal? CREATEUSER { get; set; } public decimal? GROUPID { get; set; } } }