| | |
| | | package com.lf.server.mapper.show; |
| | | |
| | | import com.lf.server.entity.bs.MpipelineEntity; |
| | | import com.lf.server.entity.ctrl.CountEntity; |
| | | import com.lf.server.entity.show.OneMapEntity; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | * 选择项目信息 |
| | | * 查询项目信息 |
| | | * |
| | | * @param projectName 项目名称 |
| | | * @param projectCode 项目编码 |
| | | * @return {@link List}<{@link String}> |
| | | */ |
| | | public List<String> selectProjectInfo(String projectName); |
| | | public List<String> selectProjectInfo(String projectCode); |
| | | |
| | | /** |
| | | * 选择项目文件列表 |
| | |
| | | */ |
| | | public List<String> countProjectDown(String projectCode); |
| | | |
| | | |
| | | /** |
| | | * 按大类统计 - 数据统计 |
| | | * |
| | | * @return |
| | | */ |
| | | public List<CountEntity> countByMajor(); |
| | | } |