|
|
@ -37,7 +37,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/10/17 14:44 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "group/epdc-app/group/create", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@PostMapping(value = "property/epdc-app/group/create", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result createGroup(GroupCreateFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -49,7 +49,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/10/21 9:54 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "group/epdc-app/group/operate", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@PostMapping(value = "property/epdc-app/group/operate", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result disbandGroup(GroupSettingStateDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -61,7 +61,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/10/21 17:26 |
|
|
|
*/ |
|
|
|
@GetMapping(value = "group/epdc-app/group/listOfMine", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@GetMapping(value = "property/epdc-app/group/listOfMine", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<List<GroupsOfMineResultDTO>> listGroupsOfMine(GroupsOfMineFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -73,7 +73,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/10/22 13:51 |
|
|
|
*/ |
|
|
|
@GetMapping(value = "group/epdc-app/group/listOfRecommend", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@GetMapping(value = "property/epdc-app/group/listOfRecommend", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<List<GroupsOfRecommendResultDTO>> listGroupsOfRecommend(GroupsOfMineFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -85,7 +85,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/10/22 15:09 |
|
|
|
*/ |
|
|
|
@GetMapping(value = "group/epdc-app/group/detail", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@GetMapping(value = "property/epdc-app/group/detail", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<GroupDetailForMobileEndResultDTO> detail(GroupDetailForMobileEndFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -97,7 +97,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/10/22 15:36 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "group/epdc-app/group/modifyIntroduction", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@PostMapping(value = "property/epdc-app/group/modifyIntroduction", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result modifyIntroduction(GroupIntroductionFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -109,7 +109,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/10/22 17:29 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "group/epdc-app/group/modifyAvatar", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@PostMapping(value = "property/epdc-app/group/modifyAvatar", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result modifyAvatar(GroupModifyAvatarFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -121,7 +121,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/10/23 9:16 |
|
|
|
*/ |
|
|
|
@GetMapping(value = "group/epdc-app/group/listOfMember", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@GetMapping(value = "property/epdc-app/group/listOfMember", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<List<GroupUserListResultDTO>> listOfMember(GroupUsersFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -133,7 +133,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/10/23 10:47 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "group/epdc-app/group/removeMember", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@PostMapping(value = "property/epdc-app/group/removeMember", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result removeMember(GroupUserRemoveOrQuitFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -145,7 +145,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/10/23 10:47 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "group/epdc-app/group/quitGroup", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@PostMapping(value = "property/epdc-app/group/quitGroup", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result quitGroup(GroupUserRemoveOrQuitFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -157,7 +157,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/10/23 16:38 |
|
|
|
*/ |
|
|
|
@GetMapping(value = "group/epdc-app/usergroup/getInviteList", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@GetMapping(value = "property/epdc-app/usergroup/getInviteList", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<List<EpdcUserGroupInviteResultDTO>> getInviteList(EpdcUserGroupInviteFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -169,7 +169,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/11/6 9:37 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "group/epdc-app/usergroup/addMember", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@PostMapping(value = "property/epdc-app/usergroup/addMember", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result addMember(GroupAddUserFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -181,7 +181,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/11/6 13:26 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "group/epdc-app/usergroup/reviewApply", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@PostMapping(value = "property/epdc-app/usergroup/reviewApply", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result reviewApply(GroupUserReviewFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -193,7 +193,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/11/11 14:04 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "group/epdc-app/group/applyForGroup", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@PostMapping(value = "property/epdc-app/group/applyForGroup", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result applyForGroup(GroupApplyFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -205,7 +205,7 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/11/11 14:32 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "group/epdc-app/usergroup/partyMember", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@PostMapping(value = "property/epdc-app/usergroup/partyMember", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result updateUserPartyMember(GroupUserPartyMemberFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
@ -217,6 +217,6 @@ public interface PropertyFeignClient { |
|
|
|
* @author liuchuang |
|
|
|
* @since 2019/11/21 10:35 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "group/epdc-app/group/joinPartyGroup", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
@PostMapping(value = "property/epdc-app/group/joinPartyGroup", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result joinGridPartyGroup(@RequestBody List<GroupUserFormDTO> formDto); |
|
|
|
} |
|
|
|