移动系统liao
2025-03-19 16b063870156db78148440971ab46c649e3e6018
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace cylsg.Model.ECTEModel
{
    /// <summary>
      /// 系统权限角色菜单关系表
      /// </summary>
    [SugarTable("Sys_Permissions_RoleMenuRelation")]
    [Tenant("ECTESTOADB")]
    public class Sys_Permissions_RoleMenuRelation
    {
        /// <summary>
        /// 角色ID
        /// </summary>
        [SugarColumn(IsNullable = true)]
        public int? RoleId { get; set; }
 
        /// <summary>
        /// 功能ID
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
        public string FuncId { get; set; }
 
        /// <summary>
        /// 一级菜单ID
        /// </summary>
        [SugarColumn(IsNullable = true)]
        public int? MenuIdOne { get; set; }
 
        /// <summary>
        /// 二级菜单ID
        /// </summary>
        [SugarColumn(IsNullable = true)]
        public int? MenuIdTwo { get; set; }
 
        /// <summary>
        /// 三级菜单ID
        /// </summary>
        [SugarColumn(IsNullable = true)]
        public int? MenuIdThree { get; set; }
    }
}