whycrzg
2021-03-27 2ce632ed80636cc24b25fe762b50ac0620f3d11d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.whyc.mapper;
 
import com.whyc.pojo.ProjectArchiveManage;
import com.whyc.pojo.ProjectManage;
 
import java.util.List;
 
public interface ProjectArchiveManageMapper {
    int deleteByPrimaryKey(Integer num);
 
    int insert(ProjectArchiveManage record);
 
    int insertSelective(ProjectArchiveManage record);
 
    ProjectArchiveManage selectByPrimaryKey(Integer num);
 
    int updateByPrimaryKeySelective(ProjectArchiveManage record);
 
    int updateByPrimaryKey(ProjectArchiveManage record);
 
    List<ProjectArchiveManage> searchByCondition(ProjectArchiveManage projectArchiveManage);
 
    int delDocumentation(ProjectArchiveManage projectArchiveManage);
}