liurunyu
2023-12-29 d1f12fd867d800b9375a3c635bd3db2265601a8b
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
package com.dy.pipIrrGlobal.daoPr;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoPr.PrController;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @author ZhuBaoMin
 * @date 2023-12-29 9:59
 * @LastEditTime 2023-12-29 9:59
 * @Description
 */
 
@Mapper
public interface PrControllerMapper extends BaseMapper<PrController> {
    int deleteByPrimaryKey(Long id);
 
    int insert(PrController record);
 
    int insertSelective(PrController record);
 
    PrController selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PrController record);
 
    int updateByPrimaryKey(PrController record);
}