| package com.doumee.core.haikang.model.param.respose; | 
|   | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| @Data | 
| public class TodayParkingDataResponse { | 
|     | 
| private Integer leftPlace    ;//Number    false    剩余车位数量 | 
| private Integer totalPlace    ;//umber    false    总车位数量 | 
| private String usePlace;//    String    false    已用车位数量 | 
| private BigDecimal useRate    ;//Number    false    车位使用率 | 
| private String parkName    ;//String    false    停车场名称 | 
| private String parkSyscode    ;//String    false    停车场唯一标识 | 
| private String statisticsTime    ;//String    false    统计标识 | 
| } |