60 lines
1.5 KiB
C#
60 lines
1.5 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace SA.Entity.zxdcrm_Models
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("bas_permission_button")]
|
|
public partial class BasPermissionButton
|
|
{
|
|
public BasPermissionButton(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
|
|
public int Id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:权限ID
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="pid")]
|
|
public int? Pid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:按钮名称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="name")]
|
|
public string? Name {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:按钮ID
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="buttonid")]
|
|
public int? Buttonid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:按钮编码
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="code")]
|
|
public string? Code {get;set;}
|
|
|
|
}
|
|
}
|