using System; using System.Collections.Generic; using System.Data; using System.Linq; namespace OpenAuth.Domain { /// /// 用户ID /// public partial class ModuleRole { /// /// 用户ID /// /// public int Id { get; set; } /// /// 角色流水号 /// /// public int RoleId { get; set; } /// /// 所属功能模块流水号 /// /// public int ModuleId { get; set; } /// /// 组织类型 /// /// public int Type { get; set; } /// /// 授权时间 /// /// public System.DateTime OperateTime { get; set; } /// /// 授权人流水号 /// /// public int OperatorId { get; set; } public ModuleRole() { this.Id= 0; this.RoleId= 0; this.ModuleId= 0; this.Type= 0; this.OperateTime= DateTime.Now; this.OperatorId= 0; } } }