zhangback
20 小时以前 ba87fd72f14c5ed0caf14e9d8ff116d254a8c113
tms/src/main/java/com/ruoyi/tms/service/ITmsApBillService.java
@@ -109,12 +109,19 @@
    public void manualPushToExternalSystem(Integer id);
    
    /**
     * 更新推送状态
     * 手动推送应付账单作废到外部系统
     * 
     * @param id 应付账单ID
     * @param pushStatus 推送状态
     * @param pushFailReason 推送失败原因
     * @return 结果
     */
    public int updatePushStatus(Integer id, Integer pushStatus, String pushFailReason);
    public void cancelPushToExternalSystem(Integer id);
    /**
     * 更新推送状态
     *
     * @param id 应付账单ID
     * @param pushStatus 推送状态
     * @return 结果
     */
    public int updatePushStatus(Integer id, Integer pushStatus);
}