old mode 100644
new mode 100755
| | |
| | | package com.java110.service.smo; |
| | | |
| | | import com.java110.common.exception.BusinessException; |
| | | import com.alibaba.fastjson.JSONArray; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.utils.exception.BusinessException; |
| | | import com.java110.service.context.DataQuery; |
| | | import org.springframework.http.ResponseEntity; |
| | | |
| | | /** |
| | | * 公用查询处理 |
| | |
| | | * @throws BusinessException |
| | | */ |
| | | public void commonDoService(DataQuery dataQuery) throws BusinessException; |
| | | |
| | | |
| | | /** |
| | | * c_common_sql |
| | | * 公共受理服务 |
| | | * @return |
| | | * @throws BusinessException |
| | | */ |
| | | public ResponseEntity<String> fallBack(String fallBackInfo) throws BusinessException; |
| | | |
| | | /** |
| | | * 执行查询sql |
| | | * @param param |
| | | * @param sql |
| | | * @return { |
| | | * th:[], |
| | | * td:[{}] |
| | | * } |
| | | */ |
| | | JSONObject execQuerySql(JSONObject param, String sql) throws BusinessException; |
| | | |
| | | /** |
| | | * 执行java脚本 |
| | | * |
| | | * @param javaCode |
| | | * @throws BusinessException |
| | | */ |
| | | JSONObject execJava(JSONObject params, String javaCode); |
| | | } |