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);
|
|
}
|