燕山石化溯源三维电子沙盘-【后端】-服务
13693261870
2023-06-06 4a4179b19501059168bd2d725bf6294708c99ec3
src/main/java/com/yssh/entity/VocVals.java
@@ -1,16 +1,19 @@
package com.yssh.entity;
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 Integer id;
    private BigInteger id;
    @CsvProperty(index = 0)
    @ApiModelProperty(value = "X")
@@ -24,17 +27,21 @@
    @ApiModelProperty(value = "值")
    private Double val;
    @JsonIgnore
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
    @ApiModelProperty(value = "地址")
    private String addr;
    public VocVals() {
    }
    public Integer getId() {
    public BigInteger getId() {
        return id;
    }
    public void setId(Integer id) {
    public void setId(BigInteger id) {
        this.id = id;
    }
@@ -69,4 +76,12 @@
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
    public String getAddr() {
        return addr;
    }
    public void setAddr(String addr) {
        this.addr = addr;
    }
}