From a700aeb0a07d11da1e6b2ae999983ba17a415c70 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期三, 30 七月 2025 16:02:04 +0800 Subject: [PATCH] 2025.7.30 1. 新增基础数据产品相关接口(待完成) --- src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/DataProdOption.kt | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/DataProdOption.kt b/src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/DataProdOption.kt new file mode 100644 index 0000000..8167bd6 --- /dev/null +++ b/src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/DataProdOption.kt @@ -0,0 +1,38 @@ +package cn.flightfeather.supervision.model.dataproduct + +import com.fasterxml.jackson.annotation.JsonFormat +import io.swagger.annotations.ApiModelProperty +import java.time.LocalDateTime + +/** + * 鏁版嵁浜у搧绛涢�夋潯浠� + * @date 2025/7/30 + * @author feiyu02 + */ +class DataProdOption { + @ApiModelProperty("鐪佷唤缂栫爜") + var provinceCode: String? = null + + @ApiModelProperty("鍩庡競缂栫爜") + var cityCode: String? = null + + @ApiModelProperty("鍖哄幙缂栫爜") + var districtCode: String? = null + + @ApiModelProperty("琛楅晣缂栫爜") + var townCode: String? = null + + @ApiModelProperty("璧峰鏃堕棿锛屾牸寮� yyyy-MM-dd HH:mm:ss") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + var startTime: LocalDateTime? = null + + @ApiModelProperty("缁撴潫鏃堕棿锛屾牸寮� yyyy-MM-dd HH:mm:ss") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + var endTime: LocalDateTime? = null + + @ApiModelProperty("鍦烘櫙涓婚敭id") + var sceneId: String? = null + + @ApiModelProperty("鍦烘櫙绫诲瀷id") + var sceneTypeId: Int? = null +} \ No newline at end of file -- Gitblit v1.9.3