刘小明
2024-08-21 14b0417bca9050a11792248f5c5c7e7c86e4744f
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
package com.dy.pmsGlobal.daoPr;
 
import com.dy.pmsGlobal.pojoPr.PrScheduleRel;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
@Mapper
public interface PrScheduleRelMapper {
    int deleteByPrimaryKey(Long id);
 
    int insert(PrScheduleRel record);
 
    int insertSelective(PrScheduleRel record);
 
    PrScheduleRel selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PrScheduleRel record);
 
    int updateByPrimaryKey(PrScheduleRel record);
 
    void deleteByScheduleId(Long scheduleId);
 
    List<PrScheduleRel> selectByScheduleId(Long scheduleId);
}