IHandleAffairsCommonService.java
1.78 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.trash.office.service;
import java.io.IOException;
import java.util.List;
import com.trash.office.domain.HandleAffairsCommon;
import com.trash.office.domain.vo.HandleAffairsCommonVo;
import org.springframework.web.multipart.MultipartFile;
/**
* 办文办事-普通类Service接口
*
* @author 2c
* @date 2023-05-11
*/
public interface IHandleAffairsCommonService
{
/**
* 查询办文办事-普通类
*
* @param id 办文办事-普通类ID
* @return 办文办事-普通类
*/
HandleAffairsCommonVo selectHandleAffairsCommonById(Long id);
/**
* 查询办文办事-普通类列表
*
* @param handleAffairsCommon 办文办事-普通类
* @return 办文办事-普通类集合
*/
List<HandleAffairsCommon> selectHandleAffairsCommonList(HandleAffairsCommon handleAffairsCommon);
/**
* 新增办文办事-普通类
*
* @param handleAffairsCommon 办文办事-普通类
* @return 结果
*/
int insertHandleAffairsCommon(MultipartFile[] files, HandleAffairsCommon handleAffairsCommon) throws IOException;
/**
* 修改办文办事-普通类
*
* @param handleAffairsCommonvo 办文办事-普通类
* @return 结果
*/
int updateHandleAffairsCommon(MultipartFile[] files,HandleAffairsCommonVo handleAffairsCommonvo) throws IOException;
/**
* 批量删除办文办事-普通类
*
* @param ids 需要删除的办文办事-普通类ID
* @return 结果
*/
int deleteHandleAffairsCommonByIds(Long[] ids);
/**
* 删除办文办事-普通类信息
*
* @param id 办文办事-普通类ID
* @return 结果
*/
int deleteHandleAffairsCommonById(Long id);
}