You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
888 B
41 lines
888 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Coldairarrow.Entity.Base_Manage
|
|
{
|
|
/// <summary>
|
|
/// 系统角色表
|
|
/// </summary>
|
|
[Table("Base_Role")]
|
|
public class Base_Role
|
|
{
|
|
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Key, Column(Order = 1)]
|
|
public String Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人Id
|
|
/// </summary>
|
|
public String CreatorId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 否已删除
|
|
/// </summary>
|
|
public Boolean Deleted { get; set; }
|
|
|
|
/// <summary>
|
|
/// 角色名
|
|
/// </summary>
|
|
public String RoleName { get; set; }
|
|
|
|
}
|
|
}
|