Merge branch 'uat_partyMemberEvent' into uat_code
This commit is contained in:
@ -45,7 +45,7 @@ public class PartyMemberEventController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation("活动风采列表")
|
@ApiOperation("活动风采列表")
|
||||||
@GetMapping("/eventStyle/list")
|
@PostMapping("/eventStyle/list")
|
||||||
public BaseResponse<List<EventStyle>> getEventStyleList(@RequestParam(value = "param", required = false) String param) {
|
public BaseResponse<List<EventStyle>> getEventStyleList(@RequestParam(value = "param", required = false) String param) {
|
||||||
return BaseResponse.success(eventStyleService.getEventStyle("list", param));
|
return BaseResponse.success(eventStyleService.getEventStyle("list", param));
|
||||||
}
|
}
|
||||||
@ -57,7 +57,7 @@ public class PartyMemberEventController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation("活动课题列表")
|
@ApiOperation("活动课题列表")
|
||||||
@GetMapping("/eventSubject/list")
|
@PostMapping("/eventSubject/list")
|
||||||
public BaseResponse<List<EventSubject>> getEventSubjectList(@RequestParam(value = "param", required = false) String param) {
|
public BaseResponse<List<EventSubject>> getEventSubjectList(@RequestParam(value = "param", required = false) String param) {
|
||||||
return BaseResponse.success(eventSubjectService.getEventSubjectList(param));
|
return BaseResponse.success(eventSubjectService.getEventSubjectList(param));
|
||||||
}
|
}
|
||||||
@ -102,7 +102,7 @@ public class PartyMemberEventController {
|
|||||||
|
|
||||||
|
|
||||||
@ApiOperation("党员列表模糊查询")
|
@ApiOperation("党员列表模糊查询")
|
||||||
@GetMapping("/partyMember/paramQuery")
|
@PostMapping("/partyMember/paramQuery")
|
||||||
public BaseResponse<List<EventPartyBranch>> getPartyMemberListByParam(@RequestParam(value = "belongBranch", required = false) String belongBranch, @RequestParam(value = "param", required = false) String param) {
|
public BaseResponse<List<EventPartyBranch>> getPartyMemberListByParam(@RequestParam(value = "belongBranch", required = false) String belongBranch, @RequestParam(value = "param", required = false) String param) {
|
||||||
return BaseResponse.success(eventPartyBranchService.getPartyMemberListByParam(belongBranch, param));
|
return BaseResponse.success(eventPartyBranchService.getPartyMemberListByParam(belongBranch, param));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user