package com.jiayue.biz.dto; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @Data @AllArgsConstructor @NoArgsConstructor public class StationInfoDto { private String id; //场站名称 private String stationName; //简称 private String abbreviation; //场站id private String stationId; //场站类型 private String stationType; //经度 private String longitude; //纬度 private String latitude; //关联设备 private String equipment; //装机容量 private String capacity; }