From 80e22bcc7af8aebed7443965655542fbe4966708 Mon Sep 17 00:00:00 2001 From: zhubaomin <zhubaomin> Date: 星期三, 09 四月 2025 15:11:55 +0800 Subject: [PATCH] 灌溉计划删除,所有命令发布都失败依然允许终止 --- pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeClientMapper.java | 130 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 130 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeClientMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeClientMapper.java new file mode 100644 index 0000000..67e5da8 --- /dev/null +++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeClientMapper.java @@ -0,0 +1,130 @@ +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 com.dy.pipIrrGlobal.voSe.VoClientWechat; +import com.dy.pipIrrGlobal.voSt.VoCardUsage; +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; + +import java.util.List; +import java.util.Map; + +/** + * @author ZhuBaoMin + * @date 2023-12-26 10:32 + * @LastEditTime 2023-12-26 10:32 + * @Description + */ + +@Mapper +public interface SeClientMapper extends BaseMapper<SeClient> { + 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); + + /** + * 鏍规嵁鍐滄埛缂栧彿鑾峰彇5绾ц鏀垮尯鍒掍唬鐮� + * @param clientNum 鍐滄埛缂栧彿 + * @return 5绾ц鏀垮尯鍒掍唬鐮� + */ + Long getAreaCodeByNum(@Param("clientNum") String clientNum); + + /** + * 鏍规嵁鍐滄埛缂栧彿鑾峰彇5绾ц鏀垮尯鍒掍覆areaCode锛岃ˉ鍗¤繃绋嬩腑寮�鏂板崱浣跨敤 + * @param clientId + * @return + */ + Long getAreaCodeById(@Param("clientId") Long clientId); + + /** + * 鏍规嵁鍐滄埛缂栧彿鑾峰彇鍐滄埛ID + * @param clientNum + * @return + */ + Long getClientIdByNum(@Param("clientNum") String clientNum); + + /** + * 鏍规嵁鐢佃瘽鍙风爜鑾峰彇鍐滄埛ID + * @param phoneNumber + * @return + */ + Long getClientIdByPhone(String phoneNumber); + + /** + * 鏍规嵁鎸囧畾鏉′欢鑾峰彇鍐滄埛璁板綍鏁� + * @param params + * @return + */ + List<VoClient> getRecordCount(Map<?, ?> params); + + /** + * 鏍规嵁鎸囧畾鏉′欢鑾峰彇鍐滄埛鏁版嵁 + * @param params + * @return + */ + List<VoClient> getClients(Map<?, ?> params); + + /** + * 鏍规嵁鍐滄埛ID閫昏緫鍒犻櫎鍐滄埛 + * @param id 鍐滄埛ID + * @return 閫昏緫鍒犻櫎璁板綍鏁� + */ + Integer deleteClientById(@Param("id") Long id); + + /** + * 鏍规嵁涓婚敭鑾峰彇鏉慖D + * @param id 鍐滄埛ID + * @return 鏉戜富閿� + */ + Long getVillageIdById(@Param("id") Long id); + + /** + * 鑾峰彇铏氭嫙鍗″彿鏈�澶у�� + * @return + */ + Long getMa1xVirtualId(); + + /** + * 鑾峰彇鐢ㄦ按鏂瑰紡鍒楄〃 + * @return + */ + List<Map<String, Object>> getWaterTypes(); + + /** + * 鑾峰彇鍐滄埛鍩烘湰淇℃伅锛屽皬绋嬪簭棣栭〉浣跨敤 + * @param sessionId + * @return + */ + VoClientWechat getSimpleClientInfo(@Param("sessionId") Long sessionId, @Param("openId") String openId); + + /** + * 鑾峰彇鎸囧畾鏃堕棿娈靛啘鎴凤細鍏呭�煎悎璁°�佹秷璐瑰悎璁°�佷綑棰� + * @param params + * @return + */ + Long getClientUsagesCount(Map<String, Object> params); + + /** + * 鑾峰彇鎸囧畾鏃堕棿娈靛啘鎴凤細鍏呭�煎悎璁°�佹秷璐瑰悎璁°�佷綑棰� + * @param params + * @return + */ + List<VoCardUsage> getClientUsages(Map<String, Object> params); +} \ No newline at end of file -- Gitblit v1.8.0