浏览代码

report-service中申诉驳回接口返回的参数RespDTO从common中移回

rengb 3 年之前
父节点
当前提交
eb587d6fc2

+ 1 - 1
common/src/main/java/com/lantone/common/dto/RespDTO.java

@@ -1,4 +1,4 @@
-package com.lantone.common.dto;
+package com.lantone.report.dto;
 
 import java.io.Serializable;
 

+ 1 - 1
report-service/src/main/java/com/lantone/report/exception/ExHandler.java

@@ -1,6 +1,6 @@
 package com.lantone.report.exception;
 
-import com.lantone.common.dto.RespDTO;
+import com.lantone.report.dto.RespDTO;
 import org.springframework.web.bind.annotation.ControllerAdvice;
 import org.springframework.web.bind.annotation.ExceptionHandler;
 import org.springframework.web.bind.annotation.ResponseBody;

+ 1 - 1
report-service/src/main/java/com/lantone/report/web/MedAppealExamineInfoManagementController.java

@@ -4,7 +4,7 @@ package com.lantone.report.web;
 
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
-import com.lantone.common.dto.RespDTO;
+import com.lantone.report.dto.RespDTO;
 import com.lantone.report.dto.GetAppealInfoDTO;
 import com.lantone.report.dto.GetAppealReviewDTO;
 import com.lantone.report.dto.GetComplaintRecordDTO;

+ 1 - 1
report-service/src/main/java/com/lantone/report/web/MedAppealInfoManagementController.java

@@ -1,7 +1,7 @@
 package com.lantone.report.web;
 
 
-import com.lantone.common.dto.RespDTO;
+import com.lantone.report.dto.RespDTO;
 import com.lantone.report.dto.GetAppealInfoDTO;
 import com.lantone.report.dto.GetReviewerDTO;
 import com.lantone.report.vo.AddAppealInfoVO;