feiyu02
2026-01-19 53ce8de426561e7a43847afda23b5e24e6f76c4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.flightfeather.supervision.lightshare.vo
 
import com.fasterxml.jackson.annotation.JsonInclude
import java.util.*
 
@JsonInclude(JsonInclude.Include.NON_NULL)
class VersionVo {
 
    var versionCode: Int? = null
 
    var versionName: String? = null
 
    var updateTime: Date? = null
 
    var enable: Boolean? = null
 
    var url: String? = null
 
    var description: String? = null
 
}