| 12345678910111213141516171819202122 |
- package platform.modules.carrier.dto;
- import lombok.Data;
- /**
- * @author kevin
- * @since 2019/4/24 9:44 AM
- */
- @Data
- public class CarrierLibraryResult {
- private Integer id;
- private String no;
- private String name;
- private Double sumBuildArea = 0d;
- private Double sumRestArea = 0d;
- private Double sumRentArea = 0d;
- private Integer parkNum;
- private Integer buildingNum;
- private Double totalRentArea;
- }
|