| | |
| | | capacityPlans = capacityPlanCache.get(cacheKey); |
| | | } else { |
| | | // 使用专用查询方法查询设计产能数据 |
| | | // 按文档要求:根据多个process_name和major、plant去aps_gas_pipeline_capacity_plan表中查询 |
| | | // 按文档要求:根据process_name和plant去aps_gas_pipeline_capacity_plan表中查询 |
| | | capacityPlans = apsGasPipelineCapacityPlanMapper.selectDesignCapacityForInterface2( |
| | | processName.trim(), year, month, major, plant); |
| | | processName.trim(), year, month, null, plant); |
| | | |
| | | // 将结果存入缓存 |
| | | capacityPlanCache.put(cacheKey, capacityPlans); |
| | |
| | | capacityPlans = capacityPlanCache.get(cacheKey); |
| | | } else { |
| | | // 使用专用查询方法查询设计产能数据 |
| | | // 按文档要求:根据process_name、major、plant去aps_gas_pipeline_capacity_plan表中查询 |
| | | // 按文档要求:根据process_name和plant去aps_gas_pipeline_capacity_plan表中查询 |
| | | capacityPlans = apsGasPipelineCapacityPlanMapper.selectDesignCapacityForInterface2( |
| | | processName, year, month, major, plant); |
| | | processName, year, month, null, plant); |
| | | |
| | | // 将结果存入缓存 |
| | | capacityPlanCache.put(cacheKey, capacityPlans); |