|
@@ -0,0 +1,98 @@
|
|
|
+package com.gyee.frame.model.custom;
|
|
|
+
|
|
|
+import com.gyee.frame.model.auto.Project;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class WindpowerstationVo {
|
|
|
+
|
|
|
+ private String id;
|
|
|
+
|
|
|
+ private String code;
|
|
|
+
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ private Double capacity;
|
|
|
+
|
|
|
+ private Integer quantity;
|
|
|
+
|
|
|
+ private Double longitude;
|
|
|
+
|
|
|
+ private Double latitude;
|
|
|
+
|
|
|
+ private String companyid;
|
|
|
+
|
|
|
+ private List<Project> pjls;
|
|
|
+
|
|
|
+ public String getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(String id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCode() {
|
|
|
+ return code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCode(String code) {
|
|
|
+ this.code = code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getCapacity() {
|
|
|
+ return capacity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCapacity(Double capacity) {
|
|
|
+ this.capacity = capacity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getQuantity() {
|
|
|
+ return quantity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQuantity(Integer quantity) {
|
|
|
+ this.quantity = quantity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getLongitude() {
|
|
|
+ return longitude;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLongitude(Double longitude) {
|
|
|
+ this.longitude = longitude;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getLatitude() {
|
|
|
+ return latitude;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLatitude(Double latitude) {
|
|
|
+ this.latitude = latitude;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCompanyid() {
|
|
|
+ return companyid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCompanyid(String companyid) {
|
|
|
+ this.companyid = companyid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Project> getPjls() {
|
|
|
+ return pjls;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPjls(List<Project> pjls) {
|
|
|
+ this.pjls = pjls;
|
|
|
+ }
|
|
|
+}
|