| | |
| | | package com.whyc.mapper; |
| | | |
| | | import com.whyc.pojo.ProjectArchiveExperiment; |
| | | import com.whyc.pojo.ProjectArchiveManage; |
| | | import com.whyc.pojo.ProjectManage; |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | List<ProjectArchiveManage> searchByCondition(ProjectArchiveManage projectArchiveManage); |
| | | |
| | | int delDocumentation(ProjectArchiveManage projectArchiveManage); |
| | | |
| | | |
| | | List<ProjectArchiveManage> searchByConditionDocumentPath(ProjectManage projectManage); |
| | | |
| | | //文档管理 |
| | | List<ProjectArchiveManage> searchProjectDocByCondition(ProjectArchiveManage projectArchiveManage); |
| | | |
| | | //试验数据 |
| | | List<ProjectArchiveExperiment> searchArchiveExperimentData(ProjectArchiveManage pam); |
| | | |
| | | //科技成果 |
| | | List<ProjectArchiveManage> searchArchiveTechnologicalAchievements(ProjectArchiveManage projectArchiveManage); |
| | | |
| | | //归档时间更新 |
| | | int updateProjectProgress(ProjectManage progress); |
| | | |
| | | @Select("SELECT COUNT(*) FROM db_experiment.tb_project_archive_manage WHERE pro_file_path=#{filePath}") |
| | | int checkFileExist(String filePath); |
| | | } |