|
@@ -109,4 +109,12 @@ func GetBiDashboardClassifyMaxSort() (sort int, err error) {
|
|
|
// del
|
|
|
func DelBiDashboardClassify(id int) (err error) {
|
|
|
return global.DEFAULT_DmSQL.Where("bi_dashboard_classify_id = ?", id).Delete(&BiDashboardClassify{}).Error
|
|
|
+}
|
|
|
+
|
|
|
+type RespPublicGroupListItem struct {
|
|
|
+ GroupId int64 `description:"目录id"`
|
|
|
+ GroupName string `description:"目录名称"`
|
|
|
+ AdminId int `description:"目录创建者账号ID"`
|
|
|
+ DashboardList []*BiDashboard
|
|
|
+ Children []*RespPublicGroupListItem
|
|
|
}
|