| | |
| | | package com.yssh.entity; |
| | | |
| | | import cn.hutool.core.date.DateTime; |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import com.github.biyanwen.annotation.CsvProperty; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigInteger; |
| | | import java.util.Date; |
| | | |
| | | public class VocVals implements Serializable { |
| | | private static final long serialVersionUID = -20230605145412000L; |
| | | |
| | | @JsonIgnore |
| | | @ApiModelProperty(value = "主键") |
| | | private int id; |
| | | private BigInteger id; |
| | | |
| | | @CsvProperty(index = 0) |
| | | @ApiModelProperty(value = "X") |
| | | private int x; |
| | | private Integer x; |
| | | |
| | | @CsvProperty(index = 1) |
| | | @ApiModelProperty(value = "Y") |
| | | private int y; |
| | | private Integer y; |
| | | |
| | | @CsvProperty(index = 2) |
| | | @ApiModelProperty(value = "值") |
| | | private double val; |
| | | private Double val; |
| | | |
| | | @JsonIgnore |
| | | @ApiModelProperty(value = "创建时间") |
| | | private DateTime createTime; |
| | | private Date createTime; |
| | | |
| | | public VocVals() { |
| | | } |
| | | |
| | | public int getId() { |
| | | public BigInteger getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(int id) { |
| | | public void setId(BigInteger id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public int getX() { |
| | | public Integer getX() { |
| | | return x; |
| | | } |
| | | |
| | | public void setX(int x) { |
| | | public void setX(Integer x) { |
| | | this.x = x; |
| | | } |
| | | |
| | | public int getY() { |
| | | public Integer getY() { |
| | | return y; |
| | | } |
| | | |
| | | public void setY(int y) { |
| | | public void setY(Integer y) { |
| | | this.y = y; |
| | | } |
| | | |
| | | public double getVal() { |
| | | public Double getVal() { |
| | | return val; |
| | | } |
| | | |
| | | public void setVal(double val) { |
| | | public void setVal(Double val) { |
| | | this.val = val; |
| | | } |
| | | |
| | | public DateTime getCreateTime() { |
| | | public Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(DateTime createTime) { |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | } |