package cn.timer.api.dao.kqgl;

import java.util.List;

import cn.timer.api.bean.kqgl.KqzAttendanceGroupSearch;
import cn.timer.api.bean.kqgl.ShiftManagement;

public interface ShiftManagementMapper {
    int deleteByPrimaryKey(Integer id);

    int insert(ShiftManagement record);

    int insertSelective(ShiftManagement record);

    ShiftManagement selectByPrimaryKey(Integer id);

    int updateByPrimaryKeySelective(ShiftManagement record);

    int updateByPrimaryKey(ShiftManagement record);
    
    List<ShiftManagement> selectByPrimaryByQyid(Integer qyid);
    
    List<ShiftManagement> selectRosterByKqzid(KqzAttendanceGroupSearch kqzattendancegroupsearch);
}