数据抓取工具接口,前端代码调整

This commit is contained in:
zhangchaoyang02 2025-05-09 18:28:01 +08:00
parent f09a974878
commit c0e996c689
3 changed files with 5 additions and 4 deletions

View File

@ -20,7 +20,7 @@ const baseRoutes = [
path: '/svi',
name: 'Svi',
component: SviLayout,
meta: {title: ''},
meta: {title: '布局'},
children: [
{
path: 'index',

View File

@ -895,7 +895,6 @@ const DEFAULT_ENTERPRISE_DETAIL = {
//安全基础管理信息
productionManageInfoExp: {productionManageSystems: [{systemName: '', systemCompileDate: ''}], productionManagePlans: [{planName: '', planCompileDate: '', planType: ''}]},
//生产设备设施及公用辅助用房
productionEquipmentExp: {productionFacilities: [{equipName: '', equipType: '', commissioningDate: ''}], auxiliaryBuildings: [{auxiliaryName: '', floorArea: '', commissioningDate: ''}]},
//行政许可信息
// administrativeLicenseInfos: [{licenseNum: "", issuingOffice: "", validFrom: "", validEnd: "", licenseType: [], qtPics: [], qtPicList: [], xkzPics: [], xkzPicList: []}],

View File

@ -88,7 +88,8 @@ public interface PagingAndSortingSpecificationRepository<T> {
* @param queryHints 查询提示
* @return 列表数据
*/
List<T> findAll(@Nullable Specification<T> specification, Map<String, Object> queryHints);
List<T> findAll(@Nullable Specification<T> specification,
Map<String, Object> queryHints);
/**
* 带实体图的分页查询可提高查询性能 实体图的作用是可以管理查询需要的属性和实体而不是默认的字段属性
@ -98,7 +99,8 @@ public interface PagingAndSortingSpecificationRepository<T> {
* @param entityGraph 实体图名称 实体图使用的抓取模式是fetch
* @return 分页数据
*/
Page<T> findAll(@Nullable Specification<T> specification, Pageable page, String entityGraph);
Page<T> findAll(@Nullable Specification<T> specification,
Pageable page, String entityGraph);
/**
* 分页查询提供查询提示功能