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.
29 lines
656 B
29 lines
656 B
package com.mh.user.entity; |
|
|
|
import lombok.Data; |
|
|
|
import java.util.Date; |
|
|
|
@Data |
|
public class WaterLevelEntity { |
|
|
|
private Date curDate; |
|
private String buildingID; |
|
private String buildingName; |
|
private String deviceName; |
|
private String level00; |
|
private String level02; |
|
private String level08; |
|
private String level11; |
|
private String level13; |
|
private String level14; |
|
private String level15; |
|
private String level16; |
|
private String level17; |
|
private String level18; |
|
private String level19; |
|
private String level20; |
|
private String level21; |
|
private String level22; |
|
private String level23; |
|
}
|
|
|