KqglAssoKqjglyMapper.java 473 Bytes
Newer Older
yuquan.zhu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package cn.timer.api.dao.kqgl;
import java.util.List;

import org.springframework.stereotype.Repository;

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

import cn.timer.api.bean.kqgl.KqglAssoKqjgly;
import cn.timer.api.dto.kqgl.AttendanceMachineDto;

/**
*  考勤机管理员
* @author lal 2019-12-24
*/
@Repository
public interface KqglAssoKqjglyMapper extends BaseMapper<KqglAssoKqjgly> {

	List<AttendanceMachineDto> selectAttendanceMacBykqjid(int kqjid);

}