import { WEB_QUERY_QUERY, WEB_QUERY_PAGE } from '../common/commonModule' class WebQuery { constructor(requestClient) { this.requestClient = requestClient this.moduleName = 'webQuery' } webQuery(data, params, header) { return this.requestClient.post(WEB_QUERY_QUERY, data, params, header) } queryPage(data, params, header) { return this.requestClient.post(WEB_QUERY_PAGE, data, params, header) } } export default WebQuery