From 1a677d2b4a4bc615602f8c2a22bc07ec1356e5be Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期四, 16 十月 2025 17:39:06 +0800
Subject: [PATCH] 2025.10.16 1. 根据全局响应增强器GlobalResponseAdvice,将原先的BaseResPack接口包装函数统一去除; 2. 新增三种类型的数据产品数据库实体 3. 新增典型问题场景清单中间数据产品接口
---
src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/Score.java | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/Score.java b/src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/Score.java
index cd6110f..c482452 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/Score.java
+++ b/src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/Score.java
@@ -1,37 +1,48 @@
package cn.flightfeather.supervision.domain.ds1.entity;
import com.fasterxml.jackson.annotation.JsonInclude;
-
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
import javax.persistence.*;
@Table(name = "sm_t_score")
+@ApiModel(value = "Score")
public class Score {
@Id
@Column(name = "Id")
+ @ApiModelProperty(value = "涓婚敭鑷id")
private Integer id;
@Column(name = "Scene_Id")
+ @ApiModelProperty(value = "鍦烘櫙id")
private String sceneId;
@Column(name = "Scene_Name")
+ @ApiModelProperty(value = "鍦烘櫙鍚嶇О")
private String sceneName;
@Column(name = "Year")
+ @ApiModelProperty(value = "骞翠唤")
private Integer year;
@Column(name = "Month")
+ @ApiModelProperty(value = "鏈堜唤")
private Integer month;
@Column(name = "District_Code")
+ @ApiModelProperty(value = "鍖哄幙缂栧彿")
private String districtCode;
@Column(name = "District_Name")
+ @ApiModelProperty(value = "鍖哄幙")
private String districtName;
@Column(name = "Score")
+ @ApiModelProperty(value = "寰楀垎")
private Integer score;
@Column(name = "Completion")
+ @ApiModelProperty(value = "鏄惁瀹屾垚")
private Boolean completion;
/**
--
Gitblit v1.9.3