feiyu02
2024-05-31 da431c25dfe5122e4ed70372da36ede3e4eaec4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
    }
}