| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gs.xky.entity.DeliveryNotice; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * @author 28567 |
| | |
| | | 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); |
| | | } |
| | | |
| | | |