MCPcopy
hub / github.com/eyebluecn/tank / Init

Method Init

code/rest/space_member_service.go:16–39  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14}
15
16func (this *SpaceMemberService) Init() {
17 this.BaseBean.Init()
18
19 b := core.CONTEXT.GetBean(this.spaceMemberDao)
20 if b, ok := b.(*SpaceMemberDao); ok {
21 this.spaceMemberDao = b
22 }
23
24 b = core.CONTEXT.GetBean(this.matterDao)
25 if b, ok := b.(*MatterDao); ok {
26 this.matterDao = b
27 }
28
29 b = core.CONTEXT.GetBean(this.bridgeDao)
30 if b, ok := b.(*BridgeDao); ok {
31 this.bridgeDao = b
32 }
33
34 b = core.CONTEXT.GetBean(this.userDao)
35 if b, ok := b.(*UserDao); ok {
36 this.userDao = b
37 }
38
39}
40
41func (this *SpaceMemberService) Detail(uuid string) *SpaceMember {
42

Callers

nothing calls this directly

Calls 2

InitMethod · 0.65
GetBeanMethod · 0.65

Tested by

no test coverage detected