AjhMeetingAttendMapper.java 676 字节
package com.skua.modules.ajh.mapper;

import java.util.List;

import com.skua.modules.system.entity.SysUser;
import org.apache.ibatis.annotations.Param;
import com.skua.modules.ajh.entity.AjhMeetingAttend;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;

/**
 * 签到/出席记录
 */
public interface AjhMeetingAttendMapper extends BaseMapper<AjhMeetingAttend> {

    List<SysUser> getUserListByDepartId(@Param("departId") String departId);

    List<SysUser> getUserListByUserIds(@Param("userIds") String userIds);

    /**
     * 会议签到记录
     * @param meetsId
     * @return
     */
    public List<AjhMeetingAttend> getListByMeetsId(String meetsId);
}