using System; using System.Collections.Generic; using System.Data; using System.Linq; namespace OpenAuth.Domain { /// /// 用户ID /// public partial class UserRole { /// /// 用户ID /// /// public int Id { get; set; } /// /// 角色流水号 /// /// public int RoleId { get; set; } /// /// 用户流水号 /// /// public int UserId { get; set; } /// /// 授权时间 /// /// public System.DateTime OperateTime { get; set; } /// /// 授权人流水号 /// /// public int OperatorId { get; set; } public UserRole() { this.Id= 0; this.RoleId= 0; this.UserId= 0; this.OperateTime= DateTime.Now; this.OperatorId= 0; } } }