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.
20 lines
312 B
Java
20 lines
312 B
Java
2 years ago
|
package com.shxy.i2.entity;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
import java.util.Date;
|
||
|
|
||
|
@Data
|
||
|
public class Data_Yx implements Serializable {
|
||
|
private Long id;
|
||
|
|
||
|
private Integer sadr;
|
||
|
|
||
|
private Date dTime;
|
||
|
|
||
|
private Integer ival;
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
}
|