| 14 | } |
| 15 | |
| 16 | func (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 | |
| 41 | func (this *SpaceMemberService) Detail(uuid string) *SpaceMember { |
| 42 | |