Blame view

JobDictMapper.java 465 Bytes
涂亚平 committed
1 2 3 4 5 6
package com.subsidy.mapper;

import com.subsidy.model.JobDictDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;

7 8
import java.util.List;

涂亚平 committed
9 10 11 12 13 14 15 16
/**
 * <p>
 * 岗位表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2024-01-11
 */
17
@Repository
涂亚平 committed
18 19
public interface JobDictMapper extends BaseMapper<JobDictDO> {

20 21 22 23 24
    /**
     * 获取某个人的岗位
     */
    List<JobDictDO> queryMemberJobs(Long memberId);

涂亚平 committed
25
}