JycountMapper.java
1.3 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
package com.lhcredit.project.business.jycount.mapper;
import com.lhcredit.project.business.jycount.domain.Jycount;
import java.util.List;
/**
* 经营异常统计 数据层
*
* @author lhcredit
* @date 2025-11-18
*/
public interface JycountMapper {
/**
* 查询经营异常统计信息
*
* @param id 经营异常统计ID
* @return 经营异常统计信息
*/
public Jycount selectJycountById(Long id);
/**
* 查询经营异常统计列表
*
* @param jycount 经营异常统计信息
* @return 经营异常统计集合
*/
public List<Jycount> selectJycountList(Jycount jycount);
/**
* 新增经营异常统计
*
* @param jycount 经营异常统计信息
* @return 结果
*/
public int insertJycount(Jycount jycount);
/**
* 修改经营异常统计
*
* @param jycount 经营异常统计信息
* @return 结果
*/
public int updateJycount(Jycount jycount);
/**
* 删除经营异常统计
*
* @param id 经营异常统计ID
* @return 结果
*/
public int deleteJycountById(Long id);
/**
* 批量删除经营异常统计
*
* @param ids 需要删除的数据ID
* @return 结果
*/
public int deleteJycountByIds(String[] ids);
}