liurunyu
2025-08-06 6955a2c758385c6c2e0d14350a11bdbf4f99780b
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
38
39
40
41
42
43
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();
 
    /**
     * 根据id删除
     * @param id
     * @return
     */
    Integer deleteByPrimaryKey(@Param("id") Long id);
}