燕山石化溯源三维电子沙盘-【后端】-服务
13693261870
2023-11-05 971d4858fcba2b551bc26f281c71f16e8671ab62
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.yssh.entity;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 快速溯源表
 * @author WWW
 * @date 2023-11-05
 */
@Data
public class SuYuanFast {
    private static final long serialVersionUID = 2023110510570000000L;
 
    public SuYuanFast() {
    }
 
    @ApiModelProperty(value = "主键ID")
    private Long id;
 
    @ApiModelProperty(value = "溯源ID")
    private String suYuanId;
 
    @ApiModelProperty(value = "方向")
    private Double dir;
 
    @ApiModelProperty(value = "X")
    private Double x;
 
    @ApiModelProperty(value = "Y")
    private Double y;
 
    @ApiModelProperty(value = "时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getSuYuanId() {
        return suYuanId;
    }
 
    public void setSuYuanId(String suYuanId) {
        this.suYuanId = suYuanId;
    }
 
    public Double getDir() {
        return dir;
    }
 
    public void setDir(Double dir) {
        this.dir = dir;
    }
 
    public Double getX() {
        return x;
    }
 
    public void setX(Double x) {
        this.x = x;
    }
 
    public Double getY() {
        return y;
    }
 
    public void setY(Double y) {
        this.y = y;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}