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;
|
}
|
}
|