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 com.gkhy.safePlatform.targetDuty.model.dto.resp.RewardPunishmentDetailDto;
|
|
import java.io.IOException;
|
import java.io.Serializable;
|
import java.util.List;
|
|
|
/**
|
* 奖惩记录(RewardPunishmentDetail)表服务接口
|
*
|
* @author xurui
|
* @since 2022-07-21 10:15:45
|
*/
|
public interface RewardPunishmentDetailService {
|
ResultVO queryAll(PageQuery<RewardPunishmentDetailQueryCriteria> pageQuery);
|
|
List<RewardPunishmentDetail> queryAll(RewardPunishmentDetailQueryCriteria criteria);
|
|
List<RewardPunishmentDetail> queryAllRelation(RewardPunishmentDetailQueryCriteria criteria);
|
|
RewardPunishmentDetailDto selectOne(Serializable id);
|
|
void delete(Long[] ids);
|
|
void exportData(RewardPunishmentDetailQueryCriteria queryCriteria) throws IOException;
|
}
|