刘小明
2024-09-05 6d9782f697908a9573a0ad7c33ceb3a9d31c2a9b
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
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);
}