namespace iWareSda_QQJF.WCSNEW.EDM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class SYS_ROLE { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public SYS_ROLE() { SYS_ROLE_VS_PERMISSION = new HashSet(); SYS_USER_VS_ROLE = new HashSet(); } public int ID { get; set; } [StringLength(50)] public string ROLENAME { get; set; } public int? ENABLE { get; set; } public int? CREATORID { get; set; } public DateTime? UPDATETIME { get; set; } public virtual SYS_USER SYS_USER { get; set; } public virtual SYS_USER SYS_USER1 { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection SYS_ROLE_VS_PERMISSION { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection SYS_USER_VS_ROLE { get; set; } } }