|
|
@ -46,11 +46,9 @@ public class PropertyServiceImpl implements PropertyService { |
|
|
|
@Autowired |
|
|
|
private PropertyFeignClient propertyFeignClient; |
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
private WxMaSecCheckTask wxMaSecCheckTask; |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public Result<GroupDetailForMobileEndResultDTO> getGroupDetail(TokenDto userDetail, String id) { |
|
|
|
if (null == userDetail) { |
|
|
@ -263,4 +261,12 @@ public class PropertyServiceImpl implements PropertyService { |
|
|
|
return propertyFeignClient.listOfComments(topicCommentsFormDTO); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Result<List<TopicListResultDTO>> listTopicOfMine(TokenDto userDetail, TopicListFormDTO formDto) { |
|
|
|
if (null == userDetail) { |
|
|
|
return new Result().error("获取用户信息失败"); |
|
|
|
} |
|
|
|
formDto.setUserId(userDetail.getUserId()); |
|
|
|
return propertyFeignClient.listOfTopic(formDto); |
|
|
|
} |
|
|
|
} |
|
|
|