Riku
2025-06-02 e731486b50c4ea6e2d28f302df449b4bd0b2be57
src/main/kotlin/com/flightfeather/uav/biz/FactorFilter.kt
@@ -35,7 +35,51 @@
    companion object{
        fun builder() = FactorFilter().Builder()
        fun default() = builder().create()
        fun default() = builder()
            .withMain(FactorType.VOC)
            .withSubs(listOf(
//                FactorType.H2S,
                FactorType.O3,
                FactorType.PM25,
                FactorType.PM10,
            ))
//            .withMain(FactorType.H2S)
//            .withSubs(listOf(
//                FactorType.VOC,
//                FactorType.O3,
//                FactorType.PM25,
//            ))
            .withMain(FactorType.O3)
            .withSubs(listOf(
                FactorType.VOC,
//                FactorType.H2S,
                FactorType.PM25,
                FactorType.PM10,
            ))
            .withMain(FactorType.PM25)
            .withSubs(listOf(
                FactorType.VOC,
//                FactorType.H2S,
                FactorType.O3,
                FactorType.PM10,
            ))
            .withMain(FactorType.PM10)
            .withSubs(listOf(
                FactorType.VOC,
//                FactorType.H2S,
                FactorType.O3,
                FactorType.PM25,
            ))
//            .withSubs(listOf(
//                FactorType.NO2,
//                FactorType.CO,
//                FactorType.SO2,
//                FactorType.O3,
//                FactorType.PM25,
//                FactorType.PM10,
//                FactorType.VOC
//            ))
            .create()
    }
    // 所选因子集合