1
12 小时以前 fdaef787cf4ffe516a395559abe75db531af9af8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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.*;
 
import java.io.UnsupportedEncodingException;
import java.security.NoSuchAlgorithmException;
import java.util.List;
 
public interface ErpReportService {
 
    String syncMaterial(List<Material> materialList);
    String syncWareHouse(List<Warehouse> warehouseList);
    String syncCustomer(List<Customer> customerList);
    String syncSupplier(List<Supplier> supplierList);
    String addOrderToServer(Order order);
 
    JSONObject loginBySign() throws UnsupportedEncodingException, NoSuchAlgorithmException;
 
    CommonResponse reportInOrOutBound(Object params);
}