| | |
| | | package com.dy.pipIrrGlobal.daoSe; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dy.pipIrrGlobal.pojoSe.SeClient; |
| | | import com.dy.pipIrrGlobal.voSe.VoClient; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | * @LastEditTime 2023/12/22 9:50 |
| | | * @Description |
| | | */ |
| | | public interface SeClientMapper { |
| | | |
| | | @Mapper |
| | | public interface SeClientMapper extends BaseMapper<SeClient> { |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | int insert(SeClient record); |
| | |
| | | String getClientNumOfMax(@Param("district8") String district8); |
| | | |
| | | /** |
| | | * 根据农户编号获取5级行政区划代码 |
| | | * @param clientNum 农户编号 |
| | | * @return 5级行政区划代码 |
| | | */ |
| | | Long getAreaCodeByNum(@Param("clientNum") String clientNum); |
| | | |
| | | /** |
| | | * 根据农户编号获取农户ID |
| | | * @param clientNum |
| | | * @return |
| | | */ |
| | | Long getClientIdByNum(@Param("clientNum") String clientNum); |
| | | |
| | | /** |
| | | * 根据指定条件获取农户记录数 |
| | | * @param params |
| | | * @return |