|
@@ -8,11 +8,7 @@ import com.lantone.report.dto.RespDTO;
|
|
|
import com.lantone.report.dto.GetAppealInfoDTO;
|
|
|
import com.lantone.report.dto.GetAppealReviewDTO;
|
|
|
import com.lantone.report.dto.GetComplaintRecordDTO;
|
|
|
-import com.lantone.report.vo.GetAppealInfoVO;
|
|
|
-import com.lantone.report.vo.GetAppealReviewVO;
|
|
|
-import com.lantone.report.vo.GetAuditNumberVO;
|
|
|
-import com.lantone.report.vo.GetComplaintRecordVO;
|
|
|
-import com.lantone.report.vo.RejectedVo;
|
|
|
+import com.lantone.report.vo.*;
|
|
|
import com.lantone.report.facade.MedAppealExamineInfoManagementFacade;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
@@ -41,7 +37,7 @@ public class MedAppealExamineInfoManagementController {
|
|
|
@ApiOperation(value = "获取申述记录列表[by:zhanghang]",
|
|
|
notes = "获取申述记录列表")
|
|
|
@PostMapping("/getComplaintRecord")
|
|
|
- public RespDTO<IPage<GetAppealReviewDTO>> getComplaintRecord(@RequestBody GetComplaintRecordVO getComplaintRecordVO) {
|
|
|
+ public RespDTO<IPage<GetComplaintRecordDTO>> getComplaintRecord(@RequestBody GetComplaintRecordVO getComplaintRecordVO) {
|
|
|
Page<GetComplaintRecordDTO> complaintRecord = medAppealExamineInfoManagementFacade.getComplaintRecord(getComplaintRecordVO);
|
|
|
return RespDTO.onSuc(complaintRecord);
|
|
|
}
|