| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package sanyangwl.pro.sanyang.service;
- import com.fasterxml.jackson.core.JsonProcessingException;
- import com.malk.server.common.McR;
- import java.util.List;
- import java.util.Map;
- public interface oaLinkcjtServer {
- String processSupplier(Map param) throws Exception;
- Map processVoucher(Map param) throws Exception;
- Map processDailyVoucher(Map param) throws Exception;
- Map processTravelVoucher(Map param) throws Exception;
- Map processBusinessVoucher(Map param) throws Exception;
- List getPaySubject();
- Map processReimbursement(Map param) throws Exception;
- Map changeSupplier(Map param) throws Exception;
- Map syncSupplier(Map param) throws Exception;
- List getBankCode(Map param) throws Exception;
- Map processPayment(Map param) throws Exception;
- void getPayResult();
- String getToken(String Type, String makeReport) throws Exception;
- McR autoPayment(Map param) throws Exception;
- Map getApplyInfo(Map param) throws Exception;
- Map processApproval(Map param);
- List getRecordCode(Map param);
- String getBankSerial(Map param) throws Exception;
- }
|