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

lal committed
3 4
import java.util.List;

ilal committed
5 6
import org.springframework.stereotype.Repository;

lal committed
7 8
import com.baomidou.mybatisplus.core.mapper.BaseMapper;

ilal committed
9 10 11 12 13 14 15 16 17
import cn.timer.api.bean.kqmk.KqglAssoDkjl;

/**
 * 打卡记录表
 * 
 * @author LAL 2020-05-11
 */
@Repository
public interface KqglAssoDkjlMapper extends BaseMapper<KqglAssoDkjl> {
ilal committed
18
	List<KqglAssoDkjl> getDetailedRecordClock(Long start,Long end,Integer userId,String attdate,Integer qyid);
ilal committed
19
}