Administrator
2023-12-22 64358eae8ae53923f408963538e0f5a7c8bdb198
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
44
45
46
47
48
49
package com.dy.pipIrrGlobal.daoSe;
 
import com.dy.pipIrrGlobal.pojoSe.SeClient;
import com.dy.pipIrrGlobal.voSe.VoClient;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author ZhuBaoMin
 * @date 2023/12/22 9:50
 * @LastEditTime 2023/12/22 9:50
 * @Description
 */
public interface SeClientMapper {
    int deleteByPrimaryKey(Long id);
 
    int insert(SeClient record);
 
    int insertSelective(SeClient record);
 
    SeClient selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(SeClient record);
 
    int updateByPrimaryKey(SeClient record);
 
    /**
     * 根据6位区划串模糊查询农户编号
     * @param district8
     * @return
     */
    String getClientNumOfMax(@Param("district8") String district8);
 
    /**
     * 根据指定条件获取农户记录数
     * @param params
     * @return
     */
    Long getRecordCount(Map<?, ?> params);
 
    /**
     * 根据指定条件获取农户数据
     * @param params
     * @return
     */
    List<VoClient> getClients(Map<?, ?> params);
}