lxp
2025-03-13 b7c4edd36912d26aa2e8e6fa5605c370bb2e478a
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
package com.ruoyi.personnel.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ruoyi.personnel.dto.PersonSupervisionRecordDto;
import com.ruoyi.personnel.pojo.PersonSupervisionRecord;
import org.apache.ibatis.annotations.Param;
 
/**
 * <p>
 * 监督记录 Mapper 接口
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2024-10-10 04:16:49
 */
public interface PersonSupervisionRecordMapper extends BaseMapper<PersonSupervisionRecord> {
 
    IPage<PersonSupervisionRecordDto> personSupervisionRecordPage(Page page, @Param("userId") Integer userId, @Param("departLimsId") Integer departLimsId, @Param("userName") String userName);
 
    /**
     * 查询监督记录详情
     * @param id
     * @return
     */
    PersonSupervisionRecordDto selectPersonSupervisionRecord(Integer id);
}