mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-09 07:08:01 +08:00
18 lines
494 B
C#
18 lines
494 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OpenAuth.Domain
|
|
{
|
|
public partial class Role
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public int Status { get; set; }
|
|
public int Type { get; set; }
|
|
public System.DateTime CreateTime { get; set; }
|
|
public string CreateId { get; set; }
|
|
public int CreateOrgId { get; set; }
|
|
public string CreateOrgCascadeId { get; set; }
|
|
}
|
|
}
|