songhuangfeng123
2022-08-09 dc1f8126ce1e5ff191a122a84ea65f4ba6918a04
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.gkhy.safePlatform.targetDuty.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.safePlatform.targetDuty.entity.RewardPunishmentDetail;
import com.gkhy.safePlatform.commons.vo.ResultVO;
import com.gkhy.safePlatform.commons.query.PageQuery;
import com.gkhy.safePlatform.targetDuty.model.dto.req.RewardPunishmentDetailQueryCriteria;
 
import java.util.List;
 
 
/**
 * 奖惩记录(RewardPunishmentDetail)表服务接口
 *
 * @author xurui
 * @since 2022-07-21 10:15:45
 */
public interface RewardPunishmentDetailService extends IService<RewardPunishmentDetail> {
    ResultVO queryAll(PageQuery<RewardPunishmentDetailQueryCriteria> pageQuery);
    
    List<RewardPunishmentDetail> queryAll(RewardPunishmentDetailQueryCriteria criteria);
 
    List<RewardPunishmentDetail> queryAllRelation(RewardPunishmentDetailQueryCriteria criteria);
}