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; +}