package com.yssh.entity; import cn.hutool.core.date.DateTime; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; public class VocVals implements Serializable { private static final long serialVersionUID = -20230605145412000L; @ApiModelProperty(value = "主键") private int id; @ApiModelProperty(value = "X") private int x; @ApiModelProperty(value = "Y") private int y; @ApiModelProperty(value = "值") private double val; @ApiModelProperty(value = "创建时间") private DateTime createTime; public VocVals() { } public int getId() { return id; } public void setId(int id) { this.id = id; } public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; } public void setY(int y) { this.y = y; } public double getVal() { return val; } public void setVal(double val) { this.val = val; } public DateTime getCreateTime() { return createTime; } public void setCreateTime(DateTime createTime) { this.createTime = createTime; } }