1
10 小时以前 4d5c3bd8bfea7a5ae0b3cd606156a1e83e633bd9
rsf-open-api/src/main/java/com/vincent/rsf/openApi/service/phyz/ErpReportService.java
@@ -1,13 +1,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.Material;
import com.vincent.rsf.openApi.entity.phyz.Order;
import com.vincent.rsf.openApi.entity.phyz.Warehouse;
import java.io.UnsupportedEncodingException;
import java.security.NoSuchAlgorithmException;
import java.util.List;
public interface ErpReportService {
    void loginBySign() throws UnsupportedEncodingException, NoSuchAlgorithmException;
    String syncMaterial(List<Material> materialList);
    String syncWareHouse(List<Warehouse> warehouseList);
    String addOrderToServer(Order order);
    JSONObject loginBySign() throws UnsupportedEncodingException, NoSuchAlgorithmException;
    CommonResponse reportInOrOutBound(Object params);
}