UserAttendanceRelMapper.java 893 Bytes
Newer Older
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
package cn.timer.api.dao.kqgl;

import java.util.List;

import cn.timer.api.bean.kqgl.UserAttendanceRel;

public interface UserAttendanceRelMapper {
    int deleteByPrimaryKey(Integer id);

    int insert(UserAttendanceRel record);

    int insertSelective(UserAttendanceRel record);

    UserAttendanceRel selectByPrimaryKey(Integer id);

    int updateByPrimaryKeySelective(UserAttendanceRel record);

    int updateByPrimaryKey(UserAttendanceRel record);
    
    int insertKqglAssoKqzdkfsList(List<UserAttendanceRel> userattendancerel);
    
    int deleteByPrimaryBykqzid(Integer kqzid);
    
    List<UserAttendanceRel> selectAttendanceOfficerByKqzid(Integer kqzid,int orgcode);
    
    int deleteByPrimaryByUserid(Integer userid,Integer qyid);
    
    List<UserAttendanceRel> selectAttNotMember(int dkfsid,int qyid);
    
    List<UserAttendanceRel> selectByPrimaryByqyid(int qyid);
}