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 params); List selectSome(Map params); List selectAll(@Param("scheduleDate") String scheduleDate,@Param("userId") Long userId); }