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 JSCsDataAnalysis(
|
aopDbMapper: AopDbMapper,
|
aopSceneTypeCheck: AopSceneTypeCheck,
|
aopOutput: AopOutput,
|
jsDustDataMapper: JSDustDataMapper,
|
jsDustSiteMapMapper: JSDustSiteMapMapper
|
) : JSDustDataAnalysis(aopDbMapper, aopSceneTypeCheck, aopOutput, jsDustDataMapper, jsDustSiteMapMapper){
|
|
override var sceneType: JSSceneType = JSSceneType.Construction
|
}
|