param_menu.go
478 字节
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
42
43
44
45
46
47
48
49
package allied_creation_user
//创建菜单
type (
ReqMenus struct {
}
DataMenus struct {
}
)
//更新菜单
type (
ReqMenusUpdate struct {
MenusId int64
}
DataMenusUpdate struct {
}
)
//移除菜单
type (
ReqMenusRemove struct {
RoleId int64
}
DataMenusRemove struct {
}
)
//返回菜单
type (
ReqMenusGet struct {
MenuId int64
}
DataMenusGet struct {
}
)
//返回菜单列表
type (
ReqMenusSearch struct {
}
DataMenusSearch struct {
}
)