36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CeramicProjectTool.Model
|
|
{
|
|
[SugarTable(tableName: "nr_sys_gn")]
|
|
public class PermissonModel
|
|
{
|
|
/* dbo.nr_sys_gn.mokuan,
|
|
* dbo.nr_sys_gn.biao,
|
|
* dbo.nr_sys_gn.gongneng,
|
|
* dbo.nr_sys_gn.xuhao,
|
|
* dbo.nr_z_quanxian.jsid,
|
|
* dbo.nr_z_quanxian.gnid,
|
|
* dbo.nr_z_yhjs.mingcheng*/
|
|
//Id
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
[SugarColumn(ColumnName = "mokuan")]
|
|
public string ModuleName { get; set; }
|
|
[SugarColumn(ColumnName = "biao")]
|
|
public string Table { get; set; }
|
|
[SugarColumn(ColumnName = "gongneng")]
|
|
public string Feature { get; set; }
|
|
[SugarColumn(ColumnName = "xuhao")]
|
|
public int SeqNo { get; set; }
|
|
[SugarColumn(ColumnName = "jieshi")]
|
|
public string Remark { get; set; }
|
|
public int gen { get; set; }
|
|
}
|
|
}
|