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>
|
}
|