| | |
| | | package com.yssh.entity; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import com.github.biyanwen.annotation.CsvProperty; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | |
| | |
| | | public class VocVals implements Serializable { |
| | | private static final long serialVersionUID = -20230605145412000L; |
| | | |
| | | @JsonIgnore |
| | | @ApiModelProperty(value = "主键") |
| | | private BigInteger id; |
| | | |
| | |
| | | @ApiModelProperty(value = "值") |
| | | private Double val; |
| | | |
| | | @JsonIgnore |
| | | @ApiModelProperty(value = "创建时间") |
| | | private Date createTime; |
| | | |
| | | @ApiModelProperty(value = "地址") |
| | | private String addr; |
| | | |
| | | public VocVals() { |
| | | } |
| | |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public String getAddr() { |
| | | return addr; |
| | | } |
| | | |
| | | public void setAddr(String addr) { |
| | | this.addr = addr; |
| | | } |
| | | } |