|
@@ -294,14 +294,14 @@ public class OpenApiController {
|
|
|
@AnonymousPostMapping(value = "/informationData")
|
|
|
@Log("信息发布列表")
|
|
|
@ApiOperation("信息发布列表")
|
|
|
- public BaseResponse<Object> informationData(@RequestBody QueryPageParams<String> criteria,Pageable pageable){
|
|
|
+ public BaseResponse<Object> informationData(@RequestBody QueryPageParams<DmInformationQueryCriteria> criteria,Pageable pageable){
|
|
|
SecurityUtils.CheckApiAuth(criteria);
|
|
|
- Map<String,Object> map = dmInformationService.queryAll(new DmInformationQueryCriteria(),pageable);
|
|
|
+ Map<String,Object> map = dmInformationService.queryAll(criteria.getQuery(),pageable);
|
|
|
List<DmInformationDto> array = JSONArray.parseArray(JSONArray.toJSONString(map.get("content")),DmInformationDto.class);
|
|
|
List<DmInformationDto> newArray = new ArrayList<>();
|
|
|
for(DmInformationDto dmInformationDto : array){
|
|
|
DmUserInformationQueryCriteria dmUserInformationQueryCriteria = new DmUserInformationQueryCriteria();
|
|
|
- dmUserInformationQueryCriteria.setUserId(criteria.getQuery());
|
|
|
+ dmUserInformationQueryCriteria.setUserId(criteria.getQuery().getUserId());
|
|
|
dmUserInformationQueryCriteria.setInformationId(dmInformationDto.getId());
|
|
|
List<DmUserInformationDto> dmUserInformationDtos = dmUserInformationService.queryAll(dmUserInformationQueryCriteria);
|
|
|
if(!ObjectUtils.isEmpty(dmUserInformationDtos)){
|