package com.gkhy.safePlatform.targetDuty.service.baseService;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.gkhy.safePlatform.commons.query.PageQuery;
|
import com.gkhy.safePlatform.commons.vo.ResultVO;
|
import com.gkhy.safePlatform.targetDuty.entity.RewardPunishmentStandard;
|
import com.gkhy.safePlatform.targetDuty.model.dto.req.RewardPunishmentStandardQueryCriteria;
|
import org.springframework.web.multipart.MultipartFile;
|
|
import java.io.IOException;
|
import java.util.List;
|
|
|
/**
|
* (RewardPunishmentStandard)表服务接口
|
*
|
* @author xurui
|
* @since 2022-07-21 10:20:10
|
*/
|
public interface RewardPunishmentStandardBaseService extends IService<RewardPunishmentStandard> {
|
List<RewardPunishmentStandard> queryAll(RewardPunishmentStandardQueryCriteria criteria);
|
|
IPage<RewardPunishmentStandard> selectPage(IPage<RewardPunishmentStandard> page, QueryWrapper predicate);
|
}
|