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