package com.dy.pmsGlobal.daoPr; 
 | 
  
 | 
import com.dy.pmsGlobal.pojoPr.PrSchedule; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
import org.apache.ibatis.annotations.Param; 
 | 
  
 | 
import java.util.List; 
 | 
import java.util.Map; 
 | 
  
 | 
@Mapper 
 | 
public interface PrScheduleMapper { 
 | 
    int deleteByPrimaryKey(Long id); 
 | 
  
 | 
    int insert(PrSchedule record); 
 | 
  
 | 
    int insertSelective(PrSchedule record); 
 | 
  
 | 
    PrSchedule selectByPrimaryKey(Long id); 
 | 
  
 | 
    int updateByPrimaryKeySelective(PrSchedule record); 
 | 
  
 | 
    int updateByPrimaryKey(PrSchedule record); 
 | 
  
 | 
    Long selectSomeCount(Map<String, Object> params); 
 | 
  
 | 
    List<PrSchedule> selectSome(Map<String, Object> params); 
 | 
  
 | 
    List<PrSchedule> selectAll(@Param("scheduleDate") String scheduleDate,@Param("userId") Long userId); 
 | 
} 
 |