This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
schisandra-cloud-album/dao/role_dao.go
2024-09-29 15:46:35 +08:00

11 lines
249 B
Go

package dao
import "schisandra-cloud-album/model"
type RoleDAO interface {
// GetRoleListByIds 获取角色列表 by id
GetRoleListByIds(id []*int64) ([]model.ScaAuthRole, error)
// AddRole 新增角色
AddRole(role model.ScaAuthRole) error
}