liurunyu
2024-10-08 dbe3ed318dfe013663271fd64c8b8b152005e0b6
pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPr/PrScheduleMapper.java
New file
@@ -0,0 +1,29 @@
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);
}