sys_user_project_roles_rel.cs 1.2 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    /// <summary>
    /// 用户项目角色关联表 -1个用户对应一个角色
    /// </summary>
    [SugarTable("sys_user_project_roles_rel")]
    public partial class sys_user_project_roles_rel : base_Entity
    {
        [SugarColumn(IsPrimaryKey = true, IsNullable = false)]
        public Guid keys { get; set; }

        /// <summary>
        /// 用户账号
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "用户账号", IsNullable = true)]
        public string account { get; set; }

        /// <summary>
        /// sys_project_roles角色key
        /// </summary>
        [SugarColumn(ColumnDescription = "sys_project_roles角色key", IsNullable = true)]
        public Guid project_roles_key { get; set; }

        /// <summary>
        /// 创建时间
        /// </summary>
        [SugarColumn(ColumnDescription = "创建时间", IsNullable = true)]
        public DateTime createTime { get; set; }

        /// <summary>
        /// 创建人
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "创建人", IsNullable = true)]
        public string createBy { get; set; }

    }
}