You can not 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
430 B
21 lines
430 B
package com.mh.user.entity; |
|
|
|
import lombok.Data; |
|
|
|
import java.util.Date; |
|
|
|
@Data |
|
public class DataResultEntity { |
|
|
|
private Long id; |
|
private String deviceAddr; |
|
private String deviceType; |
|
private String buildingId; |
|
private String buildingName; |
|
private double lastValue; |
|
private Date lastDate; |
|
private double curValue; |
|
private Date curDate; |
|
private double ratio; |
|
private double calcValue; |
|
}
|
|
|