1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package cn.flightfeather.supervision.business.crosstimechange
|
| import cn.flightfeather.supervision.domain.ds1.entity.Scense
|
| /**
| * 场景跨月度问题组
| * @date 2024/12/20
| * @author feiyu02
| */
| class ScenePbGroup {
|
| // 场景
| var scene: Scense? = null
|
| // 历来各月份的问题情况
| val pbGroup = mutableListOf<ProblemInfo?>()
| }
|
|