feiyu02
2025-10-30 9cb8d7e0f4ffca386b14a15f8a0aca4d1db23252
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
package cn.flightfeather.supervision.lightshare.service
 
import cn.flightfeather.supervision.lightshare.vo.dataprod.DPChangeInfo
import cn.flightfeather.supervision.lightshare.vo.dataprod.DPProblemRecurrence
import cn.flightfeather.supervision.lightshare.vo.dataprod.QueryOptSingle
 
/**
 * 单场景纵向数据统计产品服务接口
 * @date 2025/10/30
 * @author feiyu02
 */
interface DataProdSingleSceneService {
 
    /**
     * 整改情况
     */
    fun getChangeInfo(option: QueryOptSingle): DPChangeInfo
 
    /**
     * 批量查询整改情况
     */
    fun getChangeInfoList(options: List<QueryOptSingle>): List<DPChangeInfo>
 
    /**
     * 问题重复情况
     */
    fun getProblemRecurrence(option: QueryOptSingle): List<DPProblemRecurrence>
}