ViolationCaseFileMapper.java
1.6 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
65
package com.trash.casefile.mapper;
import java.util.List;
import com.trash.casefile.domain.ViolationCaseFile;
import org.apache.ibatis.annotations.Param;
/**
* 平台违规案卷Mapper接口
*
* @author 2c
* @date 2023-05-11
*/
public interface ViolationCaseFileMapper
{
/**
* 查询平台违规案卷
*
* @param id 平台违规案卷ID
* @return 平台违规案卷
*/
ViolationCaseFile selectViolationCaseFileById(Long id);
/**
* 查询平台违规案卷列表
*
* @param ViolationCaseFile 平台违规案卷
* @return 平台违规案卷集合
*/
List<ViolationCaseFile> selectViolationCaseFileList(ViolationCaseFile violationCaseFile);
List<ViolationCaseFile> selectViolationCaseFileListByTable(@Param("owningRegion") String owningRegion, @Param("startDate")String startDate, @Param("endDate")String endDate);
/**
* 新增平台违规案卷
*
* @param ViolationCaseFile 平台违规案卷
* @return 结果
*/
int insertViolationCaseFile(ViolationCaseFile violationCaseFile);
/**
* 修改平台违规案卷
*
* @param ViolationCaseFile 平台违规案卷
* @return 结果
*/
int updateViolationCaseFile(ViolationCaseFile violationCaseFile);
/**
* 删除平台违规案卷
*
* @param id 平台违规案卷ID
* @return 结果
*/
int deleteViolationCaseFileById(Long id);
/**
* 批量删除平台违规案卷
*
* @param ids 需要删除的数据ID
* @return 结果
*/
int deleteViolationCaseFileByIds(Long[] ids);
}