sys_project_roles.cs
553 Bytes
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
/// <summary>
/// 项目角色表-基础信息
/// </summary>
[SugarTable("sys_project_roles")]
public partial class sys_project_roles : base_entity
{
[SugarColumn(IsPrimaryKey = true, IsNullable = true)]
public Guid keys { get; set; }
/// <summary>
/// 角色名称
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "角色名称", IsNullable = true)]
public string roles_name { get; set; }
}
}