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