feiyu02
2025-09-18 baf2cc2ce3dfd1235c012a3750132769fcd9ad2f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package cn.flightfeather.supervision.lightshare.service
 
import cn.flightfeather.supervision.lightshare.vo.dataprod.middle.DPInspectionSummary
import cn.flightfeather.supervision.lightshare.vo.dataprod.QueryOpt
import cn.flightfeather.supervision.lightshare.vo.dataprod.middle.DPEvaluationByArea
import cn.flightfeather.supervision.lightshare.vo.dataprod.middle.DPProblemCountByArea
import cn.flightfeather.supervision.lightshare.vo.dataprod.middle.DPProblemTypeCount
 
/**
 * 中间数据产品服务接口
 * @date 2025/9/15
 * @author feiyu02
 */
interface DataProdMiddleService {
 
    /**
     * 巡查完成情况汇总
     */
    fun getInspectionSummary(queryOpt: QueryOpt): DPInspectionSummary
 
    /**
     * 问题分类汇总
     */
    fun getProblemTypeSummary(queryOpt: QueryOpt): List<DPProblemTypeCount>
 
    /**
     * 分区域单场景问题数量
     */
    fun getProblemCountByArea(queryOpt: QueryOpt): List<DPProblemCountByArea>
 
    /**
     * 分区域规范性情况
     */
    fun getEvaluationByArea(queryOpt: QueryOpt): List<DPEvaluationByArea>
}