From b180708562d6fb872c83c05756e8041d9967483a Mon Sep 17 00:00:00 2001
From: Riku <risaku@163.com>
Date: 星期一, 22 十二月 2025 21:04:13 +0800
Subject: [PATCH] 2025.12.22 1. 修改日任务统计接口,新增当天内整改问题数和48小时内整改问题数统计
---
src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/CityVo.kt | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/CityVo.kt b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/CityVo.kt
index 981f7ef..1c7b8fb 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/CityVo.kt
+++ b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/CityVo.kt
@@ -1,15 +1,19 @@
package cn.flightfeather.supervision.lightshare.vo
import com.fasterxml.jackson.annotation.JsonInclude
+import io.swagger.annotations.ApiModel
+import io.swagger.annotations.ApiModelProperty
@JsonInclude(JsonInclude.Include.NON_NULL)
+@ApiModel(value = "City")
class CityVo {
+ @ApiModelProperty(value = "涓婚敭id")
var cityid: Int? = null
-
+ @ApiModelProperty(value = "鐪佷唤id")
var pronvinceid: Int? = null
-
+ @ApiModelProperty(value = "鍩庡競缂栫爜")
var citycode: String? = null
-
+ @ApiModelProperty(value = "鍩庡競鍚嶇О")
var cityname: String? = null
var station: String? = null
--
Gitblit v1.9.3