whycrzg
2021-03-31 9d1314ec569b55afbea9079c2b248f3cb6bd1dfc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.whyc.mapper;
 
import com.whyc.pojo.ProjectManage;
 
import java.util.List;
 
public interface ProjectManageMapper {
    int deleteByPrimaryKey(Integer num);
 
    int insert(ProjectManage record);
 
    int insertSelective(ProjectManage record);
 
    ProjectManage selectByPrimaryKey(Integer num);
 
    int updateByPrimaryKeySelective(ProjectManage record);
 
    int updateByPrimaryKey(ProjectManage record);
 
    //项目管理/项目过程管理
    List<ProjectManage> searchAll();
 
    //项目管理/项目过程管理 根据筛选条件,如果无参数为all
    List<ProjectManage> searchByCondition(ProjectManage projectManage);
 
    //项目管理/己确认、未确认阶段 管理-显示
    ProjectManage searchManageStateByCondition(ProjectManage projectManage);
 
    //项目管理/己确认、未确认阶段 管理-更新
    int updateManageState(ProjectManage projectManage);
 
    //项目名称 唯一标识符
    Integer checkUniqueId(ProjectManage pm);
 
    List<ProjectManage> searchArchiveAll();
 
//    项目归档管理-条件查询 开始日期 OR 归档日期 根据筛选条件,如果无参数为all
    List<ProjectManage> searchArchiveByCondition(ProjectManage projectManage);
 
    //项目概况信息
    ProjectManage searchArchiveProjectInfo(ProjectManage pm);
 
}