PunchCardDetailsMapper.java 1.04 KB
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 21 22 23 24 25 26 27 28 29 30 31 32 33 34
package cn.timer.api.dao.kqgl;


import java.util.List;

import cn.timer.api.bean.kqgl.AttendanceDetails;
import cn.timer.api.bean.kqgl.PunchCardDetails;

public interface PunchCardDetailsMapper {
    int deleteByPrimaryKey(Integer id);

    int insert(PunchCardDetails record);

    int insertSelective(PunchCardDetails record);

    PunchCardDetails selectByPrimaryKey(Integer id);

    int updateByPrimaryKeySelective(PunchCardDetails record);

    int updateByPrimaryKey(PunchCardDetails record);
    int ModifyPunchDetails(PunchCardDetails record);
    
    List<PunchCardDetails> selectAttendanceDays(Integer userid,Long start,Long end);
    
    PunchCardDetails SingleAttendanceDays(Integer userid,Long start,Long end);
    
    List<PunchCardDetails> SelectAttendanceDetails(Integer qyid,Long start,Long end);
    
    List<PunchCardDetails> QueryAttendanceDetails(AttendanceDetails attendancedetails);
    
    int selectWorkingHours(Integer userid,Long start,Long end);
    
    List<PunchCardDetails> selectNoScheduling(Long start,Long end,Integer userid);
}