| | |
| | | package com.lf.server.mapper.data; |
| | | |
| | | import com.lf.server.entity.data.MetaEntity; |
| | | import com.lf.server.entity.data.PublishEntity; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | |
| | | * @return |
| | | */ |
| | | public Integer updates(List<PublishEntity> list); |
| | | |
| | | /** |
| | | * 查询元数据记录数 |
| | | * |
| | | * @param depcode 单位编码 |
| | | * @param dircode 目录编码 |
| | | * @param verid 版本ID |
| | | * @param type 类别 |
| | | * @param name 名称 |
| | | * @return 记录数 |
| | | */ |
| | | public Integer selectMetasByCount(String depcode, String dircode, Integer verid, String type, String name); |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param depcode 单位编码 |
| | | * @param dircode 目录编码 |
| | | * @param verid 版本ID |
| | | * @param type 类别 |
| | | * @param name 名称 |
| | | * @param limit 记录数 |
| | | * @param offset 偏移量 |
| | | * @return 列表 |
| | | */ |
| | | public List<MetaEntity> selectMetasByPage(String depcode, String dircode, Integer verid, String type, String name, Integer limit, Integer offset); |
| | | } |