Files
lone-services/services/admin/internal/dao/authority.go
T
gjs be8f89f449
CI / changes (push) Successful in 5s
CI / docker-bff (push) Failing after 7s
CI / docker-product (push) Failing after 5s
CI / docker-admin (push) Failing after 4s
CI / docker-user (push) Failing after 6s
change layout
2026-08-20 15:41:44 +08:00

154 lines
8.7 KiB
Go

package dao
const (
TypeDir = 1
TypeWeb = 2
TypeButton = 3
TypeUrl = 4
TypeData = 5
NoData = "#"
SortTypeUp = 1
SortTypeDown = 2
QuerySortLIstWeb = 1
QuerySortListAll = 2
QuerySortListNotButton = 3
)
// Authority 权限表
type Authority struct {
Id int64 `gorm:"column:id;type:int(11);primary_key;AUTO_INCREMENT;comment:ID" json:"id"`
Name string `gorm:"column:name;type:varchar(255);comment:菜单;NOT NULL" json:"name"`
ParentId int64 `gorm:"column:parent_id;type:int(11);default:0;comment:父级菜单;NOT NULL" json:"parent_id"`
ParentIds string `gorm:"column:parent_ids;type:varchar(255);comment:多级父级菜单;NOT NULL" json:"parent_ids"`
Level uint8 `gorm:"column:level;type:tinyint(2);default:0;comment:级别;NOT NULL" json:"level"`
Type uint8 `gorm:"column:type;type:tinyint(2);comment:类型,1目录,2页面,3按钮;NOT NULL" json:"type"`
ServiceId int64 `gorm:"column:service_id;type:int(11);comment:项目ID;NOT NULL" json:"service_id"`
Path string `gorm:"column:path;type:varchar(255);comment:页面请求地址;NOT NULL" json:"path"`
Api string `gorm:"column:api;type:varchar(255);comment:接口地址" json:"api"`
ViewPath string `gorm:"column:view_path;type:varchar(255);comment:页面文件路径" json:"view_path"`
Identification string `gorm:"column:identification;type:varchar(255);comment:权限标识" json:"identification"`
Icon string `gorm:"column:icon;type:varchar(255);comment:图标" json:"icon"`
Status uint8 `gorm:"column:status;type:tinyint(1);default:1;comment:状态,1为正常,2为禁用;NOT NULL" json:"status"`
Sort uint8 `gorm:"column:sort;type:smallint(3);default:1;comment:排序" json:"sort"`
JsonDataBase string `gorm:"column:json_data_base;type:text;comment:原始数据" json:"json_data_base"`
JsonTreeData string `gorm:"column:json_tree_data;type:text;comment:数据的树型结构" json:"json_tree_data"`
JsonData string `gorm:"column:json_data;type:text;comment:所有的数据" json:"json_data"`
DataIds string `gorm:"column:data_ids;type:varchar(32);comment:三个数据的IDs" json:"data_ids"`
IsShow uint8 `gorm:"column:is_show;type:tinyint(1);default:1;comment:菜单中是否显示,1为显示,2为不显示;NOT NULL" json:"is_show"`
Description string `json:"description" gorm:"description"` // 备注
Reason string `gorm:"column:reason;type:varchar(255);comment:原因" json:"reason"`
AdminId int64 `gorm:"column:admin_id;type:int(11);comment:操作人ID" json:"admin_id"`
AdminName string `gorm:"column:admin_name;type:varchar(255);comment:操作人员姓名" json:"admin_name"`
}
// AuthorityStatus 修改状态
type AuthorityStatus struct {
Id int64 `json:"id"`
Status uint8 `json:"status"`
Reason string `gorm:"column:reason;type:varchar(255);comment:原因" json:"reason"`
ServiceId int64 `gorm:"column:service_id;type:int(11);comment:项目ID;NOT NULL" json:"service_id"`
AdminId int64 `json:"admin_id"`
AdminName string `gorm:"column:admin_name;type:varchar(100);comment:操作人姓名" json:"admin_name"`
}
type AuthorityCheck struct {
Id int64 `json:"id"`
Api string `json:"api"`
Type uint8 `json:"type"`
}
type AuthorityItems struct {
Id int64 `json:"id"`
Name string `json:"name"`
ParentId int64 `json:"parent_id"`
ParentIds string `json:"parent_ids"`
Level uint8 `json:"level"`
Type uint8 `json:"type"`
ServiceId int64 `json:"service_id"`
Path string `json:"path"`
Api string `json:"api"`
ViewPath string `json:"view_path"`
Identification string `json:"identification"`
Icon string `json:"icon"`
Status uint8 `json:"status"`
Sort uint8 `json:"sort"`
JsonDataBase string `gorm:"column:json_data_base;type:text;comment:原始数据" json:"json_data_base"`
JsonData string `gorm:"column:json_data;type:text;comment:所有的数据" json:"json_data"`
JsonTreeData string `gorm:"column:json_tree_data;type:text;comment:数据的树型结构" json:"json_tree_data"`
DataIds string `json:"data_ids"`
IsShow uint8 `json:"is_show"`
Description string `json:"description"` // 备注
Reason string `json:"reason"`
AdminId int64 `json:"admin_id"`
AdminName string `json:"admin_name"`
IsFirst bool `json:"is_first"` // 是否是同级第一个节点
IsLast bool `json:"is_last"` // 是否是同级最后一个节点
Children []*AuthorityItems `json:"children"`
}
type AuthorityNames struct {
Id int64 `json:"id"`
Name string `json:"name"`
Level uint8 `json:"level"`
Type uint8 `json:"type"`
ParentId int64 `json:"parent_id"db:"parent_id"`
}
type AuthorityNamesItems struct {
Id int64 `json:"value"`
Name string `json:"label"`
Level uint8 `json:"level"`
Type uint8 `json:"type"`
ParentId int64 `json:"pid"`
Children []AuthorityNamesItems `json:"children"`
}
type AuthorityInfo struct {
Id int64 `gorm:"column:id;type:int(11);primary_key;AUTO_INCREMENT;comment:ID" json:"id"`
Name string `gorm:"column:name;type:varchar(255);comment:菜单;NOT NULL" json:"name"`
ParentId int64 `gorm:"column:parent_id;type:int(11);default:0;comment:父级菜单;NOT NULL" json:"parent_id"`
ServiceId int64 `gorm:"column:service_id;type:int(11);comment:项目ID;NOT NULL" json:"service_id"`
Type uint8 `gorm:"column:type;type:tinyint(2);comment:类型,1目录,2页面,3按钮;NOT NULL" json:"type"`
Path string `gorm:"column:path;type:varchar(100);comment:页面请求地址;NOT NULL" json:"path"`
Api string `gorm:"column:api;type:varchar(100);comment:接口地址" json:"api"`
ViewPath string `gorm:"column:view_path;type:varchar(255);comment:页面文件路径" json:"view_path"`
Identification string `gorm:"column:identification;type:varchar(255);comment:权限标识" json:"identification"`
Icon string `gorm:"column:icon;type:varchar(30);comment:图标" json:"icon"`
IsShow uint8 `gorm:"column:is_show;type:tinyint(1);default:1;comment:菜单中是否显示,1为显示,2为不显示;NOT NULL" json:"is_show"`
JsonDataBase string `gorm:"column:json_data_base;type:text;comment:原始数据" json:"json_data_base"`
JsonTreeData string `gorm:"column:json_tree_data;type:text;comment:数据的树型结构" json:"json_tree_data"`
JsonData string `gorm:"column:json_data;type:text;comment:所有的数据" json:"json_data"`
DataIds string `gorm:"column:data_ids;type:varchar(32);comment:三个数据的IDs" json:"data_ids"`
Description string `json:"description" gorm:"description"` // 备注
Reason string `gorm:"column:reason;type:varchar(255);comment:原因" json:"reason"`
}
type AuthorityInfoNew struct {
AuthorityInfo
JsonDataDepartment string `json:"json_data_department"`
JsonDataAll string `json:"json_data_all"`
JsonDataOneself string `json:"json_data_oneself"`
}
type AuthoritySort struct {
Id int64 `gorm:"column:id;type:int(11);primary_key;AUTO_INCREMENT;comment:ID" json:"id"`
ParentId int64 `gorm:"column:parent_id;type:int(11);default:0;comment:父级菜单;NOT NULL" json:"parent_id"`
ServiceId int64 `gorm:"column:service_id;type:int(11);comment:项目ID;NOT NULL" json:"service_id"`
Sort uint8 `gorm:"column:sort;type:smallint(3);default:1;comment:排序" json:"sort"`
AdminId int64 `gorm:"column:admin_id;type:int(11);comment:操作人ID" json:"admin_id"`
AdminName string `gorm:"column:admin_name;type:varchar(255);comment:操作人员姓名" json:"admin_name"`
}
type AuthorityUpJsonIds struct {
DataIds string `gorm:"column:data_ids;type:varchar(32);comment:三个数据的IDs" json:"data_ids"`
}
type AuthorityGetJsonIds struct {
Id int64 `gorm:"column:id;type:int(11);primary_key;AUTO_INCREMENT;comment:ID" json:"id"`
JsonDataBase string `gorm:"column:json_data_base;type:text;comment:原始数据" json:"json_data_base"`
JsonData string `gorm:"column:json_data;type:text;comment:所有的数据" json:"json_data"`
JsonTreeData string `gorm:"column:json_tree_data;type:text;comment:数据的树型结构" json:"json_tree_data"`
DataIds string `gorm:"column:data_ids;type:varchar(32);comment:三个数据的IDs" json:"data_ids"`
}