OpenAuth.Net/OpenAuth.Repository/Domain/Role.cs
yubaolee 9c2d044d12 增加雪花算法https://gitee.com/yitter/idgenerator
增加对数据库主键为numberic的支持
2021-03-13 16:21:56 +08:00

65 lines
1.9 KiB
C#

//------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a CodeSmith Template.
//
// DO NOT MODIFY contents of this file. Changes to this
// file will be lost if the code is regenerated.
// Author:Yubao Li
// </autogenerated>
//------------------------------------------------------------------------------
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
namespace OpenAuth.Repository.Domain
{
/// <summary>
/// 角色表
/// </summary>
[Table("Role")]
public partial class Role : StringEntity
{
public Role()
{
this.Name= string.Empty;
this.Status= 0;
this.CreateTime= DateTime.Now;
this.CreateId= string.Empty;
this.TypeName= string.Empty;
this.TypeId= string.Empty;
}
/// <summary>
/// 角色名称
/// </summary>
[Description("角色名称")]
public string Name { get; set; }
/// <summary>
/// 当前状态
/// </summary>
[Description("当前状态")]
public int Status { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Description("创建时间")]
public System.DateTime CreateTime { get; set; }
/// <summary>
/// 创建人ID
/// </summary>
[Description("创建人ID")]
public string CreateId { get; set; }
/// <summary>
/// 分类名称
/// </summary>
[Description("分类名称")]
public string TypeName { get; set; }
/// <summary>
/// 分类ID
/// </summary>
[Description("分类ID")]
public string TypeId { get; set; }
}
}