From 9d0512aa6a192ee105ff9251e68a4360c7355319 Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期二, 10 六月 2025 18:34:53 +0800 Subject: [PATCH] Merge branch 'master' of http://8.140.179.55:20000/r/pipIrr-SV --- pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeLossMapper.java | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 45 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeLossMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeLossMapper.java new file mode 100644 index 0000000..dbf3e71 --- /dev/null +++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeLossMapper.java @@ -0,0 +1,45 @@ +package com.dy.pipIrrGlobal.daoSe; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.dy.pipIrrGlobal.pojoSe.SeLoss; +import com.dy.pipIrrGlobal.voSe.VoLoss; +import org.apache.ibatis.annotations.Mapper; + +import java.util.List; +import java.util.Map; + +/** + * @author ZhuBaoMin + * @date 2023-12-25 13:52 + * @LastEditTime 2023-12-25 13:52 + * @Description + */ + +@Mapper +public interface SeLossMapper extends BaseMapper<SeLoss> { + int deleteByPrimaryKey(Long id); + + int insert(SeLoss record); + + int insertSelective(SeLoss record); + + SeLoss selectByPrimaryKey(Long id); + + int updateByPrimaryKeySelective(SeLoss record); + + int updateByPrimaryKey(SeLoss record); + + /** + * 鏍规嵁鎸囧畾鐨勬潯浠惰幏鍙栨寕澶辫褰曟暟 + * @param params + * @return + */ + Long getRecordCount(Map<?, ?> params); + + /** + * 鏍规嵁鎸囧畾鐨勬潯浠惰幏鍙栨寕澶辫褰� + * @param params + * @return + */ + List<VoLoss> getLosses(Map<?, ?> params); +} \ No newline at end of file -- Gitblit v1.8.0