From db0b87b36c44a5a9bc32a915769024f0c9db7c05 Mon Sep 17 00:00:00 2001 From: 龚焕茏 <2842157468@qq.com> Date: 星期四, 11 四月 2024 15:10:49 +0800 Subject: [PATCH] 运维单位绑定账号 --- ycl-server/src/main/java/com/ycl/platform/mapper/DefaultResultMapper.java | 62 +++++++++++++++++++++++++++++++ 1 files changed, 62 insertions(+), 0 deletions(-) diff --git a/ycl-server/src/main/java/com/ycl/platform/mapper/DefaultResultMapper.java b/ycl-server/src/main/java/com/ycl/platform/mapper/DefaultResultMapper.java new file mode 100644 index 0000000..1db462f --- /dev/null +++ b/ycl-server/src/main/java/com/ycl/platform/mapper/DefaultResultMapper.java @@ -0,0 +1,62 @@ +package com.ycl.platform.mapper; + +import com.ycl.platform.domain.entity.DefaultResult; + +import java.util.List; + +/** + * 鍚堝悓鑰冩牳缁撴灉Mapper鎺ュ彛 + * + * @author ruoyi + * @date 2024-04-01 + */ +public interface DefaultResultMapper +{ + /** + * 鏌ヨ鍚堝悓鑰冩牳缁撴灉 + * + * @param id 鍚堝悓鑰冩牳缁撴灉涓婚敭 + * @return 鍚堝悓鑰冩牳缁撴灉 + */ + public DefaultResult selectDefaultResultById(Long id); + + /** + * 鏌ヨ鍚堝悓鑰冩牳缁撴灉鍒楄〃 + * + * @param defaultResult 鍚堝悓鑰冩牳缁撴灉 + * @return 鍚堝悓鑰冩牳缁撴灉闆嗗悎 + */ + public List<DefaultResult> selectDefaultResultList(DefaultResult defaultResult); + + /** + * 鏂板鍚堝悓鑰冩牳缁撴灉 + * + * @param defaultResult 鍚堝悓鑰冩牳缁撴灉 + * @return 缁撴灉 + */ + public int insertDefaultResult(DefaultResult defaultResult); + + /** + * 淇敼鍚堝悓鑰冩牳缁撴灉 + * + * @param defaultResult 鍚堝悓鑰冩牳缁撴灉 + * @return 缁撴灉 + */ + public int updateDefaultResult(DefaultResult defaultResult); + + /** + * 鍒犻櫎鍚堝悓鑰冩牳缁撴灉 + * + * @param id 鍚堝悓鑰冩牳缁撴灉涓婚敭 + * @return 缁撴灉 + */ + public int deleteDefaultResultById(Long id); + + /** + * 鎵归噺鍒犻櫎鍚堝悓鑰冩牳缁撴灉 + * + * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁涓婚敭闆嗗悎 + * @return 缁撴灉 + */ + public int deleteDefaultResultByIds(Long[] ids); +} -- Gitblit v1.8.0