KqglAssoPbmxMapper.java 696 Bytes
Newer Older
ilal committed
1 2
package cn.timer.api.dao.kqmk;

ilal committed
3 4
import java.util.List;

ilal committed
5 6 7 8 9
import org.springframework.stereotype.Repository;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;

import cn.timer.api.bean.kqmk.KqglAssoPbmx;
ilal committed
10
import cn.timer.api.dto.kqmk.AttSchedulingDto;
ilal committed
11 12 13 14 15 16 17 18 19 20 21
import cn.timer.api.dto.kqmk.KqglAssoPbmxDto;

/**
 * 排班明细表
 * 
 * @author LAL 2020-05-11
 */
@Repository
public interface KqglAssoPbmxMapper extends BaseMapper<KqglAssoPbmx> {

	KqglAssoPbmxDto getScheduleSpecificAttendance(Integer kqzid, Integer userid, String date);
ilal committed
22 23 24 25
	
	 int insertKqglAssoPbmxList(List<KqglAssoPbmxDto> kqglassopbmxdto);
	 
	 List<KqglAssoPbmxDto> selectAttGroupScheduling(AttSchedulingDto attschedulingdto);
ilal committed
26
}