package com.vincent.rsf.openApi.service.phyz;
|
|
import com.vincent.rsf.openApi.entity.dto.CommonResponse;
|
|
import java.io.UnsupportedEncodingException;
|
import java.security.NoSuchAlgorithmException;
|
|
public interface ErpReportService {
|
|
void loginBySign() throws UnsupportedEncodingException, NoSuchAlgorithmException;
|
|
CommonResponse reportInOrOutBound(Object params);
|
}
|