feiyu02
2025-09-19 7cbe1610b87da19ed8a146a09b1117f92d9d3d98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package cn.flightfeather.supervision.lightshare.vo
 
import com.fasterxml.jackson.annotation.JsonInclude
 
@JsonInclude(JsonInclude.Include.NON_NULL)
class RankVo {
    class TownRank {
        var sceneTypeId: String? = null
        var sceneTypeName: String? = null
        var townCode: String? = null
        var townName: String? = null
        var averageScore: Int = -1
        var standardRate: Float = -1f
        var hasScoredNum: Int = 0
        var totalSceneNum: Int = 0
    }
 
    class SceneRank {
        var sceneTypeId: String? = null
        var sceneTypeName: String? = null
        var sceneNameId: String? = null
        var sceneName: String? = null
        var score: Int = -1
        var standard: String? = null
        var standardOrder: Int = -1
    }
 
    var topTaskId: String? = null
    var topTaskName: String? = null
    var townRanks: MutableList<TownRank>? = null
    var sceneRanks: MutableList<SceneRank>? = null
}