param_org.go
696 字节
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package allied_creation_user
//创建组织
type (
ReqOrg struct {
}
DataOrg struct {
}
)
//更新组织
type (
ReqOrgUpdate struct {
OrgId int64
}
DataOrgUpdate struct {
}
)
//移除组织
type (
ReqOrgRemove struct {
OrgId int64
}
DataOrgRemove struct {
}
)
//获取组织的子部门(通用部门列表使用)
type (
ReqOrgGetSubDepartment struct {
OrgId int64
}
DataOrgGetSubDepartment struct {
}
)
//设置组织启用状态
type (
ReqOrgEnable struct {
}
DataOrgEnable struct {
}
)
//返回组织
type (
ReqOrgGet struct {
OrgId int64
}
DataOrgGet struct {
}
)
//返回组织列表
type (
ReqOrgSearch struct {
}
DataOrgSearch struct {
}
)