QysApiService.java 562 B

123456789101112131415161718192021
  1. package com.malk.ruisi.service;
  2. import com.alibaba.fastjson.JSONObject;
  3. import java.io.File;
  4. import java.util.Map;
  5. public interface QysApiService {
  6. JSONObject sendPost(Map param, String url)throws Exception;
  7. JSONObject sendGet(Map param, String url)throws Exception;
  8. JSONObject sendGet(Map param, String url,Boolean isUnicode)throws Exception;
  9. JSONObject sendPostFile(Map param, String url)throws Exception;
  10. void getFile(Map param, String url, File file)throws Exception;
  11. // void getFile1(Map param, String url)throws Exception;
  12. }