| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package com.uas.eis.service;
- import com.uas.eis.dto.stksto.QueryAccountantProjectDto;
- import com.uas.eis.dto.stksto.QueryCashFlowItemsDto;
- import com.uas.eis.dto.stksto.QueryTravellingMerchantDto;
- import com.uas.eis.dto.stksto.StkCommonDto;
- import com.uas.eis.sdk.dto.CustvendDTO;
- import com.uas.eis.sdk.dto.SaveOrChangeCustomerDetailDto;
- import com.uas.eis.sdk.dto.UpdateCustVendDTO;
- import com.uas.eis.vo.stkVo.*;
- import java.util.List;
- /**
- * 请求深投控service
- * */
- public interface RequestSTKService {
- /**
- * 获取客商相关信息
- * */
- TravellingMerchantVo selectTravellingMerchantList(QueryTravellingMerchantDto dto, String url);
- /**
- * 新增修改客商信息
- * */
- SaveOrChangeCustomerVo saveOrChangeCustomer(List<SaveOrChangeCustomerDetailDto> sourceDataList);
- /**
- * 查询现金流项目
- * */
- CashFlowItemsVo getCashFlowItems(StkCommonDto dto);
- /**
- * 获取会计科目
- * */
- AccountantProjectVo getAccountantProject(QueryAccountantProjectDto dto);
- /**
- * 获取深投控测试获取,测试
- * */
- List<CustvendDTO> queryList();
- /**
- * post请求(获取现金流)
- * */
- HttpResultResponse buildPostParam(Integer page,Integer size,QueryCashFlowItemsDto dtoParam) throws Exception;
- /**
- * post请求(获取科目)
- * */
- HttpResultResponse buildKMPostParam(Integer page, Integer size, QueryAccountantProjectDto dto) throws Exception;
- /**
- * post请求(修改客商)
- * */
- HttpResultResponse updateKSPostParam(Integer page, Integer size, List<SaveOrChangeCustomerDetailDto> dtos) throws Exception;
- }
|