| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 查询记录数 |
| | | * |
| | | * @param depcode 单位编码 |
| | | * @param dircode 目录编码 |
| | | * @param verid 版本ID |
| | | * @param name 名称 |
| | | * @param wkt WKT |
| | | * @param depcode 单位编码 |
| | | * @param dircode 目录编码 |
| | | * @param verid 版本ID |
| | | * @param name 名称 |
| | | * @param sensorType 传感器类型 |
| | | * @param mataType 元数据类型 |
| | | * @param startDate 开始日期 |
| | | * @param endDate 结束日期 |
| | | * @param wkt WKT |
| | | * @return 记录数 |
| | | */ |
| | | public Integer selectCount(String depcode, String dircode, Integer verid, String name, String wkt); |
| | | public Integer selectCount(String depcode, String dircode, Integer verid, String name, Integer sensorType, Integer mataType, Date startDate, Date endDate, String wkt); |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param depcode 单位编码 |
| | | * @param dircode 目录编码 |
| | | * @param verid 版本ID |
| | | * @param name 名称 |
| | | * @param wkt WKT |
| | | * @param limit 记录数 |
| | | * @param offset 偏移量 |
| | | * @param depcode 单位编码 |
| | | * @param dircode 目录编码 |
| | | * @param verid 版本ID |
| | | * @param name 名称 |
| | | * @param sensorType 传感器类型 |
| | | * @param mataType 元数据类型 |
| | | * @param startDate 开始日期 |
| | | * @param endDate 结束日期 |
| | | * @param wkt WKT |
| | | * @param limit 记录数 |
| | | * @param offset 偏移量 |
| | | * @return 列表 |
| | | */ |
| | | public List<MetaEntity> selectByPage(String depcode, String dircode, Integer verid, String name, String wkt, Integer limit, Integer offset); |
| | | public List<MetaEntity> selectByPage(String depcode, String dircode, Integer verid, String name, Integer sensorType, Integer mataType, Date startDate, Date endDate, String wkt, Integer limit, Integer offset); |
| | | |
| | | /** |
| | | * 根据GUID查询GDB |
| | |
| | | public MetaEntity selectById(int id); |
| | | |
| | | /** |
| | | * 根据id字符串查询 |
| | | * |
| | | * @param ids id字符串 |
| | | * @return 元数据集合 |
| | | */ |
| | | public List<MetaEntity> selectByIds(String ids); |
| | | |
| | | /** |
| | | * 根据GUID查询 |
| | | * |
| | | * @param guid 文件GUID |
| | |
| | | * @param ids 元数据ID集合 |
| | | * @return 元数据文件集合 |
| | | */ |
| | | public List<MetaEntity> selectMetaFiles(List<Integer> ids); |
| | | public List<MetaEntity> selectMetaFiles(String ids); |
| | | |
| | | /** |
| | | * 查询Excel元数据 |