From 77ce942a696de881cc703745b8b1d112ddb70fa5 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期一, 22 七月 2024 18:45:44 +0800 Subject: [PATCH] 车辆数据阈值检查接口 --- ycl-server/src/main/java/com/ycl/platform/mapper/TContractMapper.java | 53 +++-------------------------------------------------- 1 files changed, 3 insertions(+), 50 deletions(-) diff --git a/ycl-server/src/main/java/com/ycl/platform/mapper/TContractMapper.java b/ycl-server/src/main/java/com/ycl/platform/mapper/TContractMapper.java index d7b483e..919f81e 100644 --- a/ycl-server/src/main/java/com/ycl/platform/mapper/TContractMapper.java +++ b/ycl-server/src/main/java/com/ycl/platform/mapper/TContractMapper.java @@ -7,57 +7,10 @@ /** * 銆愯濉啓鍔熻兘鍚嶇О銆慚apper鎺ュ彛 - * + * * @author ruoyi * @date 2024-03-12 */ -public interface TContractMapper extends BaseMapper<TContract> -{ - /** - * 鏌ヨ銆愯濉啓鍔熻兘鍚嶇О銆� - * - * @param id 銆愯濉啓鍔熻兘鍚嶇О銆戜富閿� - * @return 銆愯濉啓鍔熻兘鍚嶇О銆� - */ - public TContract selectTContractById(Long id); - - /** - * 鏌ヨ銆愯濉啓鍔熻兘鍚嶇О銆戝垪琛� - * - * @param tContract 銆愯濉啓鍔熻兘鍚嶇О銆� - * @return 銆愯濉啓鍔熻兘鍚嶇О銆戦泦鍚� - */ - public List<TContract> selectTContractList(TContract tContract); - - /** - * 鏂板銆愯濉啓鍔熻兘鍚嶇О銆� - * - * @param tContract 銆愯濉啓鍔熻兘鍚嶇О銆� - * @return 缁撴灉 - */ - public int insertTContract(TContract tContract); - - /** - * 淇敼銆愯濉啓鍔熻兘鍚嶇О銆� - * - * @param tContract 銆愯濉啓鍔熻兘鍚嶇О銆� - * @return 缁撴灉 - */ - public int updateTContract(TContract tContract); - - /** - * 鍒犻櫎銆愯濉啓鍔熻兘鍚嶇О銆� - * - * @param id 銆愯濉啓鍔熻兘鍚嶇О銆戜富閿� - * @return 缁撴灉 - */ - public int deleteTContractById(Long id); - - /** - * 鎵归噺鍒犻櫎銆愯濉啓鍔熻兘鍚嶇О銆� - * - * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁涓婚敭闆嗗悎 - * @return 缁撴灉 - */ - public int deleteTContractByIds(Long[] ids); +public interface TContractMapper extends BaseMapper<TContract> { + List<TContract> selectAll(); } -- Gitblit v1.8.0