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.
21 lines
288 B
Java
21 lines
288 B
Java
2 years ago
|
package com.shxy.i2.dto;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.Date;
|
||
|
import java.util.List;
|
||
|
|
||
|
@Data
|
||
|
public class Data_YxlDto {
|
||
|
|
||
|
Integer sadr;
|
||
|
Date dtime;
|
||
|
Integer ival;
|
||
|
String field;
|
||
|
String sensorCode;
|
||
|
String equipmentId;
|
||
|
String tableName;
|
||
|
String phase;
|
||
|
|
||
|
}
|