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.

53 lines
1.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
namespace FactorySystemModel.SqlSugarModel
{
///<summary>
///角色功能关系表
///</summary>
[SugarTable("TRole_Right")]
public partial class TRole_Right
{
public TRole_Right()
{
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int FID { get; set; }
/// <summary>
/// Desc:
/// Default:-1
/// Nullable:False
/// </summary>
public int FRoleID { get; set; }
/// <summary>
/// Desc:
/// Default:-1
/// Nullable:False
/// </summary>
public int FFunctionID { get; set; }
/// <summary>
/// Desc:类型1菜单2视图3协同
/// Default:-1
/// Nullable:False
/// </summary>
public int FType { get; set; }
/// <summary>
/// Desc:操作人
/// Default:
/// Nullable:False
/// </summary>
public string FOperate { get; set; }
}
}