33 lines
737 B
C#
33 lines
737 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CeramicProjectTool.Model
|
|
{
|
|
/*
|
|
###CSharp Code Generate###
|
|
nr_z_quanxian
|
|
Create by User(EMAIL) 2024/5/22 14:11:44
|
|
|
|
nr_z_quanxian
|
|
----------------
|
|
id PKInteger //<<自增长>>
|
|
jsid Integer
|
|
gnid Integer
|
|
|
|
*/
|
|
[SugarTable("nr_z_quanxian")]
|
|
public class RulePermissonModel
|
|
{
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
[SugarColumn(ColumnName = "jsid")]
|
|
public int RuleId { get; set; }
|
|
[SugarColumn(ColumnName = "gnid")]
|
|
public int FeatureId { get; set; }
|
|
}
|
|
}
|