RequestSTKService.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.uas.eis.service;
  2. import com.uas.eis.dto.stksto.QueryAccountantProjectDto;
  3. import com.uas.eis.dto.stksto.QueryCashFlowItemsDto;
  4. import com.uas.eis.dto.stksto.QueryTravellingMerchantDto;
  5. import com.uas.eis.dto.stksto.StkCommonDto;
  6. import com.uas.eis.sdk.dto.CustvendDTO;
  7. import com.uas.eis.sdk.dto.SaveOrChangeCustomerDetailDto;
  8. import com.uas.eis.sdk.dto.UpdateCustVendDTO;
  9. import com.uas.eis.vo.stkVo.*;
  10. import java.util.List;
  11. /**
  12. * 请求深投控service
  13. * */
  14. public interface RequestSTKService {
  15. /**
  16. * 获取客商相关信息
  17. * */
  18. TravellingMerchantVo selectTravellingMerchantList(QueryTravellingMerchantDto dto, String url);
  19. /**
  20. * 新增修改客商信息
  21. * */
  22. SaveOrChangeCustomerVo saveOrChangeCustomer(List<SaveOrChangeCustomerDetailDto> sourceDataList);
  23. /**
  24. * 查询现金流项目
  25. * */
  26. CashFlowItemsVo getCashFlowItems(StkCommonDto dto);
  27. /**
  28. * 获取会计科目
  29. * */
  30. AccountantProjectVo getAccountantProject(QueryAccountantProjectDto dto);
  31. /**
  32. * 获取深投控测试获取,测试
  33. * */
  34. List<CustvendDTO> queryList();
  35. /**
  36. * post请求(获取现金流)
  37. * */
  38. HttpResultResponse buildPostParam(Integer page,Integer size,QueryCashFlowItemsDto dtoParam) throws Exception;
  39. /**
  40. * post请求(获取科目)
  41. * */
  42. HttpResultResponse buildKMPostParam(Integer page, Integer size, QueryAccountantProjectDto dto) throws Exception;
  43. /**
  44. * post请求(修改客商)
  45. * */
  46. HttpResultResponse updateKSPostParam(Integer page, Integer size, List<SaveOrChangeCustomerDetailDto> dtos) throws Exception;
  47. }