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.
29 lines
489 B
Java
29 lines
489 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_Fhdlbx implements Serializable {
|
|
private BigInteger id;
|
|
|
|
private Integer eqmid;
|
|
|
|
private Date acquisitiontime;
|
|
|
|
private Integer action;
|
|
|
|
private Integer isupload;
|
|
|
|
private Date createTime;
|
|
|
|
private Date updateTime;
|
|
|
|
private byte[] loadwaveform;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
} |