道路线索应急巡查系统服务后台
feiyu02
2025-04-22 41548e262362faf603a71e066e01bd4ef46619d2
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
package com.flightfeather.grid.external.vo
 
import com.flightfeather.grid.domain.ds1.entity.ClueQuestion
 
class ClueQuestionDto {
 
    constructor()
 
    constructor(clueQuestion: ClueQuestion, baseImgPath: String) {
        clueQuestion.let {
            clueId = it.cId
            questionName = it.cqName
            questionDescription = it.cqDescription
            street = it.cqStreet
            address = it.cqAddress
            lon = it.cqLongitude
            lat = it.cqLatitude
            filePaths = it.cqFilePath.split(";").map { p-> baseImgPath + p }
        }
    }
 
    var clueId: Int? = null
    var questionName: String? = null
    var questionDescription: String? = null
    var street: String? = null
    var address: String? = null
    var lon: Double? = null
    var lat: Double? = null
    var filePaths: List<String>? = null
}