1
4 天以前 e8855038f6e47cde0d6a8a9ddb2fa5a629e0efbb
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);
}