feat: 珍稀植物园运行数据-弹窗

This commit is contained in:
tangwei 2026-06-10 10:57:31 +08:00
parent 31295520a8
commit 53cad38f39

View File

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