1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.flightfeather.supervision.business.autooutput.dataanalysis
 
import cn.flightfeather.supervision.business.autooutput.AopOutput
import cn.flightfeather.supervision.business.autooutput.datasource.AopDbMapper
import cn.flightfeather.supervision.business.autooutput.datasource.AopSceneTypeCheck
import cn.flightfeather.supervision.domain.ds3.enum.JSSceneType
import cn.flightfeather.supervision.domain.ds3.mapper.JSDustDataMapper
import cn.flightfeather.supervision.domain.ds3.mapper.JSDustSiteMapMapper
import org.springframework.stereotype.Component
 
/**
 * 金山搅拌站扬尘监测数据统计
 */
@Component
class JSMpDataAnalysis(
    aopDbMapper: AopDbMapper,
    aopSceneTypeCheck: AopSceneTypeCheck,
    aopOutput: AopOutput,
    jsDustDataMapper: JSDustDataMapper,
    jsDustSiteMapMapper: JSDustSiteMapMapper,
) : JSDustDataAnalysis(aopDbMapper, aopSceneTypeCheck, aopOutput, jsDustDataMapper, jsDustSiteMapMapper) {
 
    override var sceneType: JSSceneType = JSSceneType.MixingPlant
}