lbq
3 天以前 a0c27199b7e512dc4087b80e3808f5fb1a081f0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.vincent.rsf.openApi.service.phyz;
 
import com.alibaba.fastjson.JSONObject;
import com.vincent.rsf.openApi.entity.dto.CommonResponse;
import com.vincent.rsf.openApi.entity.phyz.Order;
 
import java.io.UnsupportedEncodingException;
import java.security.NoSuchAlgorithmException;
 
public interface ErpReportService {
 
    int addOrderToServer(Order order);
 
    JSONObject loginBySign() throws UnsupportedEncodingException, NoSuchAlgorithmException;
 
    CommonResponse reportInOrOutBound(Object params);
}