| | |
| | | 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") |
| | |
| | | @ApiModelProperty(value = "值") |
| | | private Double val; |
| | | |
| | | @JsonIgnore |
| | | @ApiModelProperty(value = "创建时间") |
| | | private Date createTime; |
| | | |
| | | public VocVals() { |
| | | } |
| | | |
| | | public Integer getId() { |
| | | public BigInteger getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Integer id) { |
| | | public void setId(BigInteger id) { |
| | | this.id = id; |
| | | } |
| | | |