package com.flightfeather.uav.model.epw
|
|
import com.flightfeather.uav.lightshare.bean.DataVo
|
import com.flightfeather.uav.model.*
|
|
/**
|
* 不做分类统计
|
*/
|
class NoSection : BaseSection<DataVo, BaseSOP>() {
|
override val sectionValues: List<Double> = listOf(1.0)
|
|
override val sectionType: List<String> = listOf("综合")
|
|
override val tagClz: Class<out BaseTag> = NoTag::class.java
|
|
override fun onSectionValue(mData: DataVo, sop: BaseSOP, effect: BaseEffect): Double {
|
return .0
|
}
|
}
|