fix 修改验证码为点击验证,角色改为树形结构,代码生成权限bug修复

This commit is contained in:
yxh
2023-12-25 12:01:44 +08:00
parent 043d0e6ea9
commit 48823c37a2
21 changed files with 300 additions and 22246 deletions

View File

@@ -20,6 +20,7 @@ type SysRoleDao struct {
// SysRoleColumns defines and stores column names for table sys_role.
type SysRoleColumns struct {
Id string //
Pid string //
Status string // 状态;0:禁用;1:正常
ListOrder string // 排序
Name string // 角色名称
@@ -33,6 +34,7 @@ type SysRoleColumns struct {
// sysRoleColumns holds the columns for table sys_role.
var sysRoleColumns = SysRoleColumns{
Id: "id",
Pid: "pid",
Status: "status",
ListOrder: "list_order",
Name: "name",