From dbe3ed318dfe013663271fd64c8b8b152005e0b6 Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期二, 08 十月 2024 09:31:32 +0800 Subject: [PATCH] Merge branch 'master' of http://8.140.179.55:20000/r/pms-SV --- pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPr/PrScheduleMapper.java | 29 +++++++++++++++++++++++++++++ 1 files changed, 29 insertions(+), 0 deletions(-) diff --git a/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPr/PrScheduleMapper.java b/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPr/PrScheduleMapper.java new file mode 100644 index 0000000..88f0819 --- /dev/null +++ b/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPr/PrScheduleMapper.java @@ -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); +} \ No newline at end of file -- Gitblit v1.8.0