feiyu02
2025-06-09 c17e9978745cfe6c983f3aff75c9182fffef32fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.flightfeather.supervision.lightshare.vo
 
import cn.flightfeather.supervision.domain.ds1.entity.Problemlist
import com.fasterxml.jackson.annotation.JsonInclude
import java.util.*
 
@JsonInclude
class StatisticsVo {
 
    var name: String? = null
 
    var startTime: Date? = null
 
    var endTime: Date? = null
 
    var count: Int = 0
 
    var changeCount: Int = 0
 
    var problems: List<Problemlist>? = null
 
}