|
@@ -713,11 +713,12 @@ public class UniversalController extends BaseRESTfulController {
|
|
|
public RESTfulResult getOilFormula(@RequestBody(required = false) Map<String,Object> mapValue,
|
|
|
Integer apiId,
|
|
|
Integer pageNum,
|
|
|
- Integer pageSize) {
|
|
|
+ Integer pageSize,
|
|
|
+ String con) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- mapValue.put("con", "%执行运价公式");
|
|
|
+ mapValue.put("con", con);
|
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
|
//分页查询数据
|
|
|
List<Map<String, Object>> columnList = universalMapper.getOilFormula(mapValue);
|