11
13693261870
2024-09-18 0849b4fd1ad5626710d0aebecd1f3e419573173a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package com.se.simu.domain.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
/**
 * 创建仿真视图类
 *
 * @author WWW
 * @date 2024-09-18
 */
@ToString
@SuppressWarnings("ALL")
@ApiModel(value = "创建仿真视图类")
@EqualsAndHashCode(callSuper = false)
public class CreateSimuVo {
    @ApiModelProperty("最小X")
    private Double minx;
 
    @ApiModelProperty("最小Y")
    private Double miny;
 
    @ApiModelProperty("最大X")
    private Double maxx;
 
    @ApiModelProperty("最大Y")
    private Double maxy;
 
    @ApiModelProperty("序号")
    private Integer num;
 
    @ApiModelProperty("降雨量(mm)")
    private Double total;
 
    @ApiModelProperty("时长(min)")
    private Integer duration;
 
    @ApiModelProperty("仿真名称")
    private String name;
 
    @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;
    }
}