|
@@ -22,6 +22,8 @@ import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* 数据导入信息Controller
|
|
|
*
|
|
@@ -45,6 +47,15 @@ public class DataImportController extends BaseController {
|
|
|
return CommonResult.success(dataImportService.selectPage(dataImportBo));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询数据导入信息列表
|
|
|
+ */
|
|
|
+ @SaCheckPermission("als:dataImport:list")
|
|
|
+ @GetMapping("/listAll")
|
|
|
+ public CommonResult<List<DataImportVo>> listAll(DataImportBo dataImportBo) {
|
|
|
+ return CommonResult.success(dataImportService.selectList(dataImportBo));
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 获取数据导入信息详细信息
|
|
|
*/
|