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