From c113351330b01774af3d9c3749aaf2a365d47272 Mon Sep 17 00:00:00 2001
From: zuojincheng <lf_zuo@163.com>
Date: 星期二, 24 六月 2025 14:34:07 +0800
Subject: [PATCH] refactor(card): 移除 DtoReissue 类中 paymentId 的 NotNull 注解
---
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoPr/PrStManureMapper.java | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoPr/PrStManureMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoPr/PrStManureMapper.java
index dca9cfc..62a2163 100644
--- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoPr/PrStManureMapper.java
+++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoPr/PrStManureMapper.java
@@ -2,7 +2,10 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoPr.PrStManure;
+import com.dy.pipIrrGlobal.voPr.VoMqttSimple;
import org.apache.ibatis.annotations.Mapper;
+
+import java.util.List;
/**
* @Author: liurunyu
@@ -13,12 +16,21 @@
public interface PrStManureMapper extends BaseMapper<PrStManure> {
int deleteByPrimaryKey(Long id);
+ /**
+ * 閫昏緫鍒犻櫎
+ * @param id primaryKey
+ * @return update count
+ */
+ int deleteLogicById(Long id);
+
int insert(PrStManure record);
int insertSelective(PrStManure record);
PrStManure selectByPrimaryKey(Long id);
+ List<VoMqttSimple> selectAllSimple() ;
+
int updateByPrimaryKeySelective(PrStManure record);
int updateByPrimaryKey(PrStManure record);
--
Gitblit v1.8.0