zhubaomin
2025-04-07 1a2b07f01ba4616fd9e894dddf474b56d020158c
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.daoRm;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoRm.RmIrrigateProfile;
import com.dy.pipIrrGlobal.voRm.VoIrrigaterProfile;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * @author ZhuBaoMin
 * @date 2024-08-23 15:17
 * @LastEditTime 2024-08-23 15:17
 * @Description
 */
 
@Mapper
public interface RmIrrigateProfileMapper extends BaseMapper<RmIrrigateProfile> {
    int deleteByPrimaryKey(Long id);
 
    int insert(RmIrrigateProfile record);
 
    int insertSelective(RmIrrigateProfile record);
 
    RmIrrigateProfile selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(RmIrrigateProfile record);
 
    int updateByPrimaryKey(RmIrrigateProfile record);
 
    /**
     * 根据配置类型获取配置值
     * @param type
     * @return
     */
    List<VoIrrigaterProfile> getIrrPro(Integer type);
}