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
429 B
21 lines
429 B
package com.mh.user.entity; |
|
|
|
import lombok.Data; |
|
|
|
@Data |
|
public class BuildingEntity { |
|
|
|
private Long id; |
|
private String buildingId; |
|
private String buildingName; |
|
private int levelsCount; |
|
private int beginLevel; |
|
private int houseCount; |
|
private int bedCount; |
|
private int checkInCount; |
|
private String areaId; |
|
private String remarks; |
|
private Double tankHeight; |
|
private int pumpCount; |
|
|
|
}
|
|
|