From 0849b4fd1ad5626710d0aebecd1f3e419573173a Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 18 九月 2024 21:03:35 +0800 Subject: [PATCH] 11 --- src/main/java/com/se/simu/domain/vo/CreateSimuVo.java | 73 ++++++++++++++++++++++++++++++++++++ 1 files changed, 72 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/se/simu/domain/vo/CreateSimuVo.java b/src/main/java/com/se/simu/domain/vo/CreateSimuVo.java index 8284a78..e56310b 100644 --- a/src/main/java/com/se/simu/domain/vo/CreateSimuVo.java +++ b/src/main/java/com/se/simu/domain/vo/CreateSimuVo.java @@ -12,7 +12,6 @@ * @author WWW * @date 2024-09-18 */ -@Data @ToString @SuppressWarnings("ALL") @ApiModel(value = "鍒涘缓浠跨湡瑙嗗浘绫�") @@ -44,4 +43,76 @@ @ApiModelProperty("浠跨湡澶囨敞") private String bak; + + public Double getMinx() { + return minx; + } + + public void setMinx(Double minx) { + this.minx = minx; + } + + public Double getMiny() { + return miny; + } + + public void setMiny(Double miny) { + this.miny = miny; + } + + public Double getMaxx() { + return maxx; + } + + public void setMaxx(Double maxx) { + this.maxx = maxx; + } + + public Double getMaxy() { + return maxy; + } + + public void setMaxy(Double maxy) { + this.maxy = maxy; + } + + public Integer getNum() { + return num; + } + + public void setNum(Integer num) { + this.num = num; + } + + public Double getTotal() { + return total; + } + + public void setTotal(Double total) { + this.total = total; + } + + public Integer getDuration() { + return duration; + } + + public void setDuration(Integer duration) { + this.duration = duration; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getBak() { + return bak; + } + + public void setBak(String bak) { + this.bak = bak; + } } -- Gitblit v1.9.3