mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-10 07:38:01 +08:00
16 lines
399 B
C#
16 lines
399 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OpenAuth.Domain
|
|
{
|
|
public partial class ModuleRole
|
|
{
|
|
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; }
|
|
}
|
|
}
|