|
@@ -3,11 +3,12 @@ package com.lantone.daqe.web;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.lantone.common.api.CommonResult;
|
|
|
import com.lantone.common.vo.BlockLossTypeGatherVO;
|
|
|
+import com.lantone.common.vo.DataCompareVO;
|
|
|
+import com.lantone.common.vo.DataRepariVO;
|
|
|
import com.lantone.daqe.dto.BlockLossTypeGatherDTO;
|
|
|
import com.lantone.daqe.dto.GetBlockLossPageDTO;
|
|
|
import com.lantone.daqe.dto.UpBlockLossByIdVO;
|
|
|
import com.lantone.daqe.facade.BlockLossManagementFacade;
|
|
|
-import com.lantone.common.vo.DataCompareVO;
|
|
|
import com.lantone.daqe.vo.GetBlockLossPageVO;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
@@ -59,4 +60,12 @@ public class BlockLossManagementController {
|
|
|
public CommonResult<BlockLossTypeGatherDTO> blockLossTypeGather(@RequestBody @Valid BlockLossTypeGatherVO blockLossTypeGatherVO) {
|
|
|
return CommonResult.success(blockLossManagementFacade.blockLossTypeGather(blockLossTypeGatherVO));
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value = "数据补录 [by:songxl]", notes = "数据补录")
|
|
|
+ @PostMapping("/dataRepari")
|
|
|
+ @Transactional
|
|
|
+ public CommonResult<Boolean> dataRepari(@RequestBody @Valid DataRepariVO dataRepariVO) {
|
|
|
+ return CommonResult.success(blockLossManagementFacade.dataRepari(dataRepariVO));
|
|
|
+ }
|
|
|
}
|