From 1f963e2344833ff02087c05411b112147492bd00 Mon Sep 17 00:00:00 2001 From: 啊鑫 <t2856754968@163.com> Date: 星期六, 21 六月 2025 22:18:59 +0800 Subject: [PATCH] 添加钉钉推送消息功能 --- src/main/resources/mapper/DeliveryNoticeMapper.xml | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/DeliveryNoticeMapper.xml b/src/main/resources/mapper/DeliveryNoticeMapper.xml index a7d8ba7..9628047 100644 --- a/src/main/resources/mapper/DeliveryNoticeMapper.xml +++ b/src/main/resources/mapper/DeliveryNoticeMapper.xml @@ -4,8 +4,28 @@ "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.gs.xky.mapper.DeliveryNoticeMapper"> + <select id="getNextVal" resultType="java.lang.Long"> SELECT SEQ_XKY.NEXTVAL FROM DUAL </select> + + <!-- 璋冪敤瀛樺偍杩囩▼ --> + <select id="callPdaReceiptBtn" statementType="CALLABLE"> + {call PRC_RF_PDA_RECEIPT_BTN( + #{C_IN_STR, mode=IN, jdbcType=VARCHAR}, + #{C_RESULT, mode=OUT, jdbcType=VARCHAR} + )} + </select> + + <select id="callPrcMesInvItemArnStatus22" statementType="CALLABLE" resultType="java.lang.String"> + {call PRC_MES_INV_ITEM_ARN_STATUS22( + #{PI_FACTORY, mode=IN, jdbcType=VARCHAR}, + #{PI_COMPANY, mode=IN, jdbcType=VARCHAR}, + #{P_USERCODE, mode=IN, jdbcType=VARCHAR}, + #{P_ID, mode=IN, jdbcType=NUMERIC}, + #{PO_RESULT, mode=OUT, jdbcType=NUMERIC}, + #{PO_TEXT, mode=OUT, jdbcType=VARCHAR} + )} + </select> </mapper> -- Gitblit v1.9.3