dcb
2025-07-01 f31f0991c0d2036e563b886f57de4cf45d3c72cb
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
package com.se.nsl.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
 
import java.util.List;
 
@TableName("bs.simu")
@SuppressWarnings("ALL")
public class SimulateVo {
    @ApiModelProperty("ID")
    private Long id;
 
    @ApiModelProperty("父ID")
    private Integer pid;
 
    @ApiModelProperty("序号")
    private Integer num;
 
    @ApiModelProperty("名称")
    private String name;
 
    @ApiModelProperty("状态:0-创建仿真,1-连接GEDB库,2-下载空间数据,3-下载高程数据,4-模拟内涝仿真,5-处理仿真数据,10-完成,-10-出错")
    private List<Short> status;
 
    @ApiModelProperty("分页大小")
    private Integer pageSize;
 
    @ApiModelProperty("当前页码")
    private Integer pageIndex;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Integer getPid() {
        return pid;
    }
 
    public void setPid(Integer pid) {
        this.pid = pid;
    }
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public List<Short> getStatus() {
        return status;
    }
 
    public void setStatus(List<Short> status) {
        this.status = status;
    }
 
    public Integer getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }
 
    public Integer getPageIndex() {
        return pageIndex;
    }
 
    public void setPageIndex(Integer pageIndex) {
        this.pageIndex = pageIndex;
    }
}