1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.dy.pipIrrGlobal.daoMd;
 
import com.dy.pipIrrGlobal.pojoMd.MdParam;
 
/**
 * @Author: liurunyu
 * @Date: 2025/8/6 10:51
 * @Description
 */
public interface MdParamMapper {
    int deleteByPrimaryKey(Long id);
 
    int insert(MdParam record);
 
    int insertSelective(MdParam record);
 
    MdParam selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(MdParam record);
 
    int updateByPrimaryKey(MdParam record);
}