riku
2025-10-30 e9aa93f381afcf9f9cf0c39f2b9e32375ed49528
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.thirdappmodule.model.bean
 
import java.util.*
 
/**
 * @author riku
 * Date: 2020/6/12
 * 导出巡查任务excel文件 条件类
 */
data class ExcelConfigVo(
        val topTaskGuid:String,
        val startTime: Date,
        val endTime: Date,
        val provinceCode: String?,
        val cityCode: String?,
        val districtCode: String?,
        val townCode: String?,
        val sceneType: Int?,
        val subTaskIdList: List<String>?,
        val problemTypeName: String?,
        val problemName: String?
)