oaLinkcjtServer.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package sanyangwl.pro.sanyang.service;
  2. import com.fasterxml.jackson.core.JsonProcessingException;
  3. import com.malk.server.common.McR;
  4. import java.util.List;
  5. import java.util.Map;
  6. public interface oaLinkcjtServer {
  7. String processSupplier(Map param) throws Exception;
  8. Map processVoucher(Map param) throws Exception;
  9. Map processDailyVoucher(Map param) throws Exception;
  10. Map processTravelVoucher(Map param) throws Exception;
  11. Map processBusinessVoucher(Map param) throws Exception;
  12. List getPaySubject();
  13. Map processReimbursement(Map param) throws Exception;
  14. Map changeSupplier(Map param) throws Exception;
  15. Map syncSupplier(Map param) throws Exception;
  16. List getBankCode(Map param) throws Exception;
  17. Map processPayment(Map param) throws Exception;
  18. void getPayResult();
  19. String getToken(String Type, String makeReport) throws Exception;
  20. McR autoPayment(Map param) throws Exception;
  21. Map getApplyInfo(Map param) throws Exception;
  22. Map processApproval(Map param);
  23. List getRecordCode(Map param);
  24. String getBankSerial(Map param) throws Exception;
  25. }