| | |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.vincent.rsf.openApi.entity.dto.CommonResponse; |
| | | import com.vincent.rsf.openApi.entity.phyz.Order; |
| | | import com.vincent.rsf.openApi.entity.phyz.*; |
| | | |
| | | import java.io.UnsupportedEncodingException; |
| | | import java.security.NoSuchAlgorithmException; |
| | | import java.util.List; |
| | | |
| | | public interface ErpReportService { |
| | | |
| | | int addOrderToServer(Order order); |
| | | 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; |
| | | |