1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| package com.ruoyi.personnel.service;
|
| import com.baomidou.mybatisplus.core.metadata.IPage;
| import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ruoyi.personnel.dto.PersonRewardPunishmentRecordDto;
| import com.ruoyi.personnel.excel.PersonRewardPunishmentRecordExcel;
| import com.ruoyi.personnel.pojo.PersonRewardPunishmentRecord;
|
| 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);
| }
|
|