🎨 update project structure

This commit is contained in:
landaiqing
2024-09-29 15:46:35 +08:00
parent 2769467ce2
commit 87f1ff6961
85 changed files with 693 additions and 431 deletions

8
service/role_service.go Normal file
View File

@@ -0,0 +1,8 @@
package service
import "schisandra-cloud-album/model"
type RoleService interface {
// AddRoleService 添加角色
AddRoleService(role model.ScaAuthRole) error
}