do_access.go
954 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package domain
// Access
type Access struct {
// 唯一标识
Id int64 `json:"id"`
// 父级id
ParentId int64 `json:"parentId"`
// 权限名称
AccessName string `json:"accessName"`
// 权限编码
AccessCode string `json:"accessCode"`
// 权限类型 menu button data
AccessType string `json:"accessType"`
// 排序
Sort int `json:"sort"`
// 请求对象 接口地址/对象
Object string `json:"object"`
// 操作方法 httpMethod/read/write
Action string `json:"action"`
// 所属功能模块
Module string `json:"module"`
}
type AccessRepository interface {
Save(dm *Access) (*Access, error)
Remove(dm *Access) (*Access, error)
FindOne(queryOptions map[string]interface{}) (*Access, error)
Find(queryOptions map[string]interface{}) (int64, []*Access, error)
}
func (m *Access) Identify() interface{} {
if m.Id == 0 {
return nil
}
return m.Id
}
func (m *Access) Update(data map[string]interface{}) error {
return nil
}