| | |
| | | import com.alibaba.fastjson2.JSONObject; |
| | | import com.aps.core.domain.ApsGasPipingRouteStat; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 气体管路产能负载统计Service接口 |
| | |
| | | * @param response |
| | | */ |
| | | public void exportExcel(HttpServletResponse response, ApsGasPipingRouteStat apsGasPipingRouteStat); |
| | | |
| | | void saveGasPipingProcessStat(); |
| | | |
| | | @Transactional |
| | | void saveGasPipingRoutStateList(); |
| | | |
| | | /** |
| | | * 根据手工气体预测数据和手工气体工单数据生成统计数据 |
| | | * |
| | | * @return 结果 |
| | | */ |
| | | @Transactional |
| | | public int generateGasPipingRouteStatData(); |
| | | |
| | | /** |
| | | * 聚合气体管路产能负载统计数据 |
| | | * |
| | | * @param params 聚合参数 |
| | | * @return 聚合结果 |
| | | */ |
| | | public Map<String, Object> aggregateGasPipingRouteStat(Map<String, Object> params); |
| | | } |