From b8b017c64b4b05a596b95406fed7b1af9f4c6ba8 Mon Sep 17 00:00:00 2001 From: 啊鑫 <t2856754968@163.com> Date: 星期一, 26 五月 2025 20:07:28 +0800 Subject: [PATCH] 添加srm与U9订单数据的对比 --- 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