sss 2 gadi atpakaļ
vecāks
revīzija
60a7022ded

+ 1 - 0
eladmin-system/src/main/java/me/zhengjie/modules/dm/information/service/dto/DmInformationQueryCriteria.java

@@ -45,4 +45,5 @@ public class DmInformationQueryCriteria{
     @Query
     private String isValid;
 
+    private String userId;
 }

+ 3 - 3
eladmin-system/src/main/java/me/zhengjie/modules/thirdparty/v1/OpenApiController.java

@@ -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)){