数据抓取工具接口,前端代码调整
This commit is contained in:
parent
f09a974878
commit
c0e996c689
|
|
@ -20,7 +20,7 @@ const baseRoutes = [
|
||||||
path: '/svi',
|
path: '/svi',
|
||||||
name: 'Svi',
|
name: 'Svi',
|
||||||
component: SviLayout,
|
component: SviLayout,
|
||||||
meta: {title: ''},
|
meta: {title: '布局'},
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: 'index',
|
path: 'index',
|
||||||
|
|
|
||||||
|
|
@ -895,7 +895,6 @@ const DEFAULT_ENTERPRISE_DETAIL = {
|
||||||
//安全基础管理信息
|
//安全基础管理信息
|
||||||
productionManageInfoExp: {productionManageSystems: [{systemName: '', systemCompileDate: ''}], productionManagePlans: [{planName: '', planCompileDate: '', planType: ''}]},
|
productionManageInfoExp: {productionManageSystems: [{systemName: '', systemCompileDate: ''}], productionManagePlans: [{planName: '', planCompileDate: '', planType: ''}]},
|
||||||
//生产设备设施及公用辅助用房
|
//生产设备设施及公用辅助用房
|
||||||
|
|
||||||
productionEquipmentExp: {productionFacilities: [{equipName: '', equipType: '', commissioningDate: ''}], auxiliaryBuildings: [{auxiliaryName: '', floorArea: '', commissioningDate: ''}]},
|
productionEquipmentExp: {productionFacilities: [{equipName: '', equipType: '', commissioningDate: ''}], auxiliaryBuildings: [{auxiliaryName: '', floorArea: '', commissioningDate: ''}]},
|
||||||
//行政许可信息
|
//行政许可信息
|
||||||
// administrativeLicenseInfos: [{licenseNum: "", issuingOffice: "", validFrom: "", validEnd: "", licenseType: [], qtPics: [], qtPicList: [], xkzPics: [], xkzPicList: []}],
|
// administrativeLicenseInfos: [{licenseNum: "", issuingOffice: "", validFrom: "", validEnd: "", licenseType: [], qtPics: [], qtPicList: [], xkzPics: [], xkzPicList: []}],
|
||||||
|
|
|
||||||
|
|
@ -88,7 +88,8 @@ public interface PagingAndSortingSpecificationRepository<T> {
|
||||||
* @param queryHints 查询提示
|
* @param queryHints 查询提示
|
||||||
* @return 列表数据
|
* @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
|
* @param entityGraph 实体图名称 实体图使用的抓取模式是fetch
|
||||||
* @return 分页数据
|
* @return 分页数据
|
||||||
*/
|
*/
|
||||||
Page<T> findAll(@Nullable Specification<T> specification, Pageable page, String entityGraph);
|
Page<T> findAll(@Nullable Specification<T> specification,
|
||||||
|
Pageable page, String entityGraph);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分页查询,提供查询提示功能
|
* 分页查询,提供查询提示功能
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue