package com.yuanchu.mom.service;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.yuanchu.mom.dto.PersonRewardPunishmentRecordDto;
|
import com.yuanchu.mom.excel.PersonRewardPunishmentRecordExcel;
|
import com.yuanchu.mom.pojo.PersonRewardPunishmentRecord;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.time.LocalDateTime;
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* <p>
|
* 奖惩记录 服务类
|
* </p>
|
*
|
* @author
|
* @since 2024-10-08 11:25:02
|
*/
|
public interface PersonRewardPunishmentRecordService extends IService<PersonRewardPunishmentRecord> {
|
|
IPage<PersonRewardPunishmentRecordDto> rewardPunishmentPage(Page page,
|
Integer userId,
|
String userName,
|
Date startTime,
|
Date endTime,
|
Integer departmentId);
|
|
List<PersonRewardPunishmentRecordExcel> rewardPunishmentExport(Integer userId, Integer departmentId, String userName, Date startTime, Date endTime);
|
}
|