songhuangfeng123
2022-07-25 d740556f340346c2966f600f5237dca010b27f4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.gkhy.safePlatform.targetDuty.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.safePlatform.targetDuty.entity.RewardPunishmentStandard;
import com.gkhy.safePlatform.commons.vo.ResultVO;
import com.gkhy.safePlatform.commons.query.PageQuery;
import com.gkhy.safePlatform.targetDuty.model.dto.req.RewardPunishmentStandardQueryCriteria;
 
import java.util.List;
 
 
/**
 * (RewardPunishmentStandard)表服务接口
 *
 * @author xurui
 * @since 2022-07-21 10:20:10
 */
public interface RewardPunishmentStandardService extends IService<RewardPunishmentStandard> {
    ResultVO queryAll(PageQuery<RewardPunishmentStandardQueryCriteria> pageQuery);
    
    List<RewardPunishmentStandard> queryAll(RewardPunishmentStandardQueryCriteria criteria);
 
}