namespace iWareSql.DBModel { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("RoleModulePermission")] public partial class RoleModulePermission { public int Id { get; set; } public bool? IsDeleted { get; set; } public int? CreateId { get; set; } [StringLength(50)] public string CreateBy { get; set; } public DateTime? CreateTime { get; set; } public int? ModifyId { get; set; } [StringLength(50)] public string ModifyBy { get; set; } public DateTime? ModifyTime { get; set; } public int RoleId { get; set; } public int ModuleId { get; set; } public int? PermissionId { get; set; } } }