liurunyu
2025-08-06 6d72d9d776585c45e5896f4a1d1d74459a2d4d5d
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
30
31
32
33
34
35
36
37
package com.dy.pipIrrGlobal.daoMd;
 
import com.dy.pipIrrGlobal.pojoMd.MdParam;
import com.dy.pipIrrGlobal.voMd.VoParam;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * @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);
 
 
    VoParam selectById(Long id);
 
    /**
     * 分页查询一些
     * @return 实体集合
     * */
    List<VoParam> selectAll();
 
}