From 53cad38f3952645597c7f8b827417349c3133964 Mon Sep 17 00:00:00 2001 From: tangwei Date: Wed, 10 Jun 2026 10:57:31 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=8F=8D=E7=A8=80=E6=A4=8D=E7=89=A9?= =?UTF-8?q?=E5=9B=AD=E8=BF=90=E8=A1=8C=E6=95=B0=E6=8D=AE-=E5=BC=B9?= =?UTF-8?q?=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../vap/entity/vo/VpBasinIntDetailVo.java | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 backend/src/main/java/com/yfd/platform/qgc_env/vap/entity/vo/VpBasinIntDetailVo.java diff --git a/backend/src/main/java/com/yfd/platform/qgc_env/vap/entity/vo/VpBasinIntDetailVo.java b/backend/src/main/java/com/yfd/platform/qgc_env/vap/entity/vo/VpBasinIntDetailVo.java new file mode 100644 index 00000000..f1b2673f --- /dev/null +++ b/backend/src/main/java/com/yfd/platform/qgc_env/vap/entity/vo/VpBasinIntDetailVo.java @@ -0,0 +1,61 @@ +package com.yfd.platform.qgc_env.vap.entity.vo; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; + +import java.io.Serializable; + +@Data +@Schema(description = "植物园运行数据弹窗") +public class VpBasinIntDetailVo implements Serializable { + + private static final long serialVersionUID = 1L; + + @Schema(description = "植物园名称") + private String stnm; + + @Schema(description = "所属基地编码") + private String baseId; + + @Schema(description = "所属基地名称") + private String baseName; + + @Schema(description = "植物园编码") + private String stcd; + + @Schema(description = "分类") + private Integer type; + + @Schema(description = "单位") + private Integer unit; + + @Schema(description = "植物名称") + private String tetp; + + @Schema(description = "总数量") + private Integer tecnt; + + @Schema(description = "存活数量") + private Integer surnum; + + @Schema(description = "移栽规模") + private Integer transplant; + + @Schema(description = "种植要求") + private Integer plantask; + + @Schema(description = "树木统计") + private String treeNum; + + @Schema(description = "花草统计") + private String fgNum; + + @Schema(description = "成活率") + private String rate; + + @Schema(description = "年份") + private String tm; + + @Schema(description = "附件") + private String fid; +}