You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
518 B
Java
28 lines
518 B
Java
package com.shxy.i2.entity;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigInteger;
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
public class Data_Dcyw implements Serializable {
|
|
private BigInteger id;
|
|
private BigInteger maxid;
|
|
private BigInteger minid;
|
|
private Integer eqmid;
|
|
|
|
private Date acquisitiontime;
|
|
|
|
private Float oiltemperature;
|
|
|
|
private Integer isupload;
|
|
|
|
private Date createTime;
|
|
|
|
private Date updateTime;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
} |