啊鑫
2025-02-13 f8811412e983fdc1d35a909c004c858fc3194636
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.gs.xky.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gs.xky.entity.DeliveryNotice;
import org.apache.ibatis.annotations.Param;
 
/**
 * @author 28567
 * @description 针对表【DELIVERY_NOTICE(送货通知单主表)】的数据库操作Mapper
 * @createDate 2025-02-11 20:55:22
 * @Entity com.gs.xky.entity.DeliveryNotice
 */
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);
}