mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-11-09 02:44:44 +08:00
采用全新的数据库架构
This commit is contained in:
@@ -1,9 +1,14 @@
|
||||
namespace OpenAuth.Domain
|
||||
{
|
||||
public partial class UserRole
|
||||
{
|
||||
public string UserRoleId { get; set; }
|
||||
public string UserId { get; set; }
|
||||
public string RoleId { get; set; }
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace OpenAuth.Domain
|
||||
{
|
||||
public partial class UserRole
|
||||
{
|
||||
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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user