From 9f7368ceb60b8f5c635cf455914f435d8d782a90 Mon Sep 17 00:00:00 2001
From: 啊鑫 <t2856754968@163.com>
Date: 星期六, 21 六月 2025 23:58:03 +0800
Subject: [PATCH] 添加钉钉推送消息功能
---
src/main/java/com/gs/xky/mapper/DeliveryNoticeMapper.java | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/gs/xky/mapper/DeliveryNoticeMapper.java b/src/main/java/com/gs/xky/mapper/DeliveryNoticeMapper.java
index 792eeb7..6d6a002 100644
--- a/src/main/java/com/gs/xky/mapper/DeliveryNoticeMapper.java
+++ b/src/main/java/com/gs/xky/mapper/DeliveryNoticeMapper.java
@@ -2,6 +2,7 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gs.xky.entity.DeliveryNotice;
+import org.apache.ibatis.annotations.Param;
/**
* @author 28567
@@ -12,6 +13,22 @@
public interface DeliveryNoticeMapper extends BaseMapper<DeliveryNotice> {
long getNextVal();
+
+ /**
+ * 璋冪敤 Oracle 瀛樺偍杩囩▼ PRC_RF_PDA_RECEIPT_BTN
+ *
+ * @param inStr 杈撳叆鍙傛暟
+ * @param result 杈撳嚭鍙傛暟
+ */
+ void callPdaReceiptBtn(@Param("C_IN_STR") String inStr, @Param("C_RESULT") String result);
+
+ //PRC_MES_INV_ITEM_ARN_STATUS22
+ void callPrcMesInvItemArnStatus22(@Param("PI_FACTORY") String factory,
+ @Param("PI_COMPANY") String company,
+ @Param("P_USERCODE") String userCode,
+ @Param("P_ID") Long id,
+ @Param("PO_RESULT") Integer poResult,
+ @Param("PO_TEXT") String poText);
}
--
Gitblit v1.9.3