sys_project_roles.cs 1.31 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    /// <summary>
    /// 项目角色表-基础信息
    /// </summary>
    [SugarTable("sys_project_roles")]
    public partial class sys_project_roles:base_Entity
    {
        [SugarColumn(IsNullable = true)]
        public Guid keys { get; set; }
 
        /// <summary>
        /// 角色名称
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "角色名称", IsNullable = true)]
        public string roles_name { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        [SugarColumn(ColumnDescription = "创建时间", IsNullable = true)]
        public DateTime create_time { get; set; }
 
        /// <summary>
        /// 创建人
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "创建人", IsNullable = true)]
        public string create_by { get; set; }
 
        /// <summary>
        /// 修改时间
        /// </summary>
        [SugarColumn(ColumnDescription = "修改时间", IsNullable = true)]
        public DateTime update_time { get; set; }
 
        /// <summary>
        /// 修改人
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "修改人", IsNullable = true)]
        public string update_by { get; set; }
 
     }
}