|
@@ -1,4 +1,4 @@
|
|
|
-package com.datau.da.controller;
|
|
|
+package com.ozs.da.controller;
|
|
|
|
|
|
import java.io.File;
|
|
|
import java.io.FileInputStream;
|
|
@@ -10,6 +10,10 @@ import java.util.List;
|
|
|
import javax.servlet.ServletOutputStream;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
+import com.ozs.da.entity.dataquality.ListDataDTO;
|
|
|
+import com.ozs.da.entity.dataquality.QuerySqlDTO;
|
|
|
+import com.ozs.da.entity.dataquality.UpdateDataDTO;
|
|
|
+import com.ozs.da.service.DataQualityService;
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
import org.apache.logging.log4j.Logger;
|
|
|
import org.apache.poi.util.IOUtils;
|
|
@@ -21,14 +25,10 @@ import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
-import com.datau.da.entity.dataquality.ListDataDTO;
|
|
|
-import com.datau.da.entity.dataquality.QuerySqlDTO;
|
|
|
-import com.datau.da.entity.dataquality.UpdateDataDTO;
|
|
|
-import com.datau.da.entity.remotedb.MdmInfoDatabase;
|
|
|
-import com.datau.da.entity.remotedb.MdmInfoTable;
|
|
|
-import com.datau.da.service.DataQualityService;
|
|
|
-import com.datau.da.utils.R;
|
|
|
-import com.datau.da.utils.S;
|
|
|
+import com.ozs.da.entity.remotedb.MdmInfoDatabase;
|
|
|
+import com.ozs.da.entity.remotedb.MdmInfoTable;
|
|
|
+import com.ozs.da.utils.R;
|
|
|
+import com.ozs.da.utils.S;
|
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
@@ -106,10 +106,10 @@ public class DataQualityController {
|
|
|
@ApiImplicitParam(name = "pageSize", value = "每页条数", required = false, paramType = "query", dataType = "Integer") })
|
|
|
@GetMapping("/da/dataQuality/listData")
|
|
|
public R<ListDataDTO> listData(@RequestParam(name = "tableId", required = true) String tableId,
|
|
|
- @RequestParam(name = "primarySql", required = true) String primarySql,
|
|
|
- @RequestParam(name = "qureySql", required = true) String qureySql,
|
|
|
- @RequestParam(required = false, defaultValue = "1") Integer page,
|
|
|
- @RequestParam(required = false, defaultValue = "10") Integer pageSize) {
|
|
|
+ @RequestParam(name = "primarySql", required = true) String primarySql,
|
|
|
+ @RequestParam(name = "qureySql", required = true) String qureySql,
|
|
|
+ @RequestParam(required = false, defaultValue = "1") Integer page,
|
|
|
+ @RequestParam(required = false, defaultValue = "10") Integer pageSize) {
|
|
|
try {
|
|
|
return dataQualityService.listData(tableId, primarySql + qureySql, page, pageSize);
|
|
|
} catch (Exception e) {
|