19 lines
616 B
C#
19 lines
616 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace SamplePre.Models.Tables
|
|||
|
|
{
|
|||
|
|
public class config_function
|
|||
|
|
{
|
|||
|
|
public int id { get; set; } // 功能ID
|
|||
|
|
public string name { get; set; } // 功能名称(如:用户管理、角色新增)
|
|||
|
|
public string code { get; set; } // 功能编码(唯一标识,如:User_Manage)
|
|||
|
|
public int parent_id { get; set; } // 父功能编码(用于构建菜单层级)
|
|||
|
|
public string description { get; set; } // 功能描述
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|