RewardsMapper.java
1.22 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.rewards.mapper;
import com.lhcredit.project.business.rewards.domain.Rewards;
import java.util.List;
/**
* 奖惩清单 数据层
*
* @author lhcredit
* @date 2025-11-12
*/
public interface RewardsMapper {
/**
* 查询奖惩清单信息
*
* @param id 奖惩清单ID
* @return 奖惩清单信息
*/
public Rewards selectRewardsById(Long id);
/**
* 查询奖惩清单列表
*
* @param rewards 奖惩清单信息
* @return 奖惩清单集合
*/
public List<Rewards> selectRewardsList(Rewards rewards);
/**
* 新增奖惩清单
*
* @param rewards 奖惩清单信息
* @return 结果
*/
public int insertRewards(Rewards rewards);
/**
* 修改奖惩清单
*
* @param rewards 奖惩清单信息
* @return 结果
*/
public int updateRewards(Rewards rewards);
/**
* 删除奖惩清单
*
* @param id 奖惩清单ID
* @return 结果
*/
public int deleteRewardsById(Long id);
/**
* 批量删除奖惩清单
*
* @param ids 需要删除的数据ID
* @return 结果
*/
public int deleteRewardsByIds(String[] ids);
}