11
13693261870
2024-09-25 6017965892db5b414d6788d140c5eab46450250a
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
package com.se.simu.domain.po;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
 
import java.sql.Timestamp;
 
/**
 * 仿真实体类
 *
 * @author WWW
 * @date 2024-09-18
 */
@TableName("bs.simu")
@SuppressWarnings("ALL")
public class SimuPo {
    @TableId(type = IdType.AUTO)
    @ApiModelProperty("主键ID")
    private Long id;
 
    @ApiModelProperty("父ID")
    private Integer pid;
 
    @ApiModelProperty("序号")
    private Integer num;
 
    @ApiModelProperty("名称")
    private String name;
 
    @ApiModelProperty("数据(JSON)")
    private String data;
 
    @ApiModelProperty("状态:0-创建仿真,1-连接GEDB库,2-下载空间数据,3-下载高程数据,4-模拟内涝仿真,5-处理仿真数据,10-完成,-10-出错")
    private Integer status;
 
    @ApiModelProperty("结果")
    private String result;
 
    @ApiModelProperty("创建时间")
    private Timestamp createTime;
 
    @ApiModelProperty("更新时间")
    private Timestamp updateTime;
 
    @ApiModelProperty("备注")
    private String bak;
 
    public SimuPo() {
    }
 
    public SimuPo(Integer num, Integer pid, String name, String data, Integer status, String bak) {
        this.num = num;
        this.pid = pid;
        this.name = name;
        this.data = data;
        this.status = status;
        this.bak = bak;
    }
 
    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 String getData() {
        return data;
    }
 
    public void setData(String data) {
        this.data = data;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public String getResult() {
        return result;
    }
 
    public void setResult(String result) {
        this.result = result;
    }
 
    public Timestamp getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Timestamp createTime) {
        this.createTime = createTime;
    }
 
    public Timestamp getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Timestamp updateTime) {
        this.updateTime = updateTime;
    }
 
    public String getBak() {
        return bak;
    }
 
    public void setBak(String bak) {
        this.bak = bak;
    }
}