|
|
@ -2,12 +2,31 @@ package com.epmet.plugin.power.dto.axis.result; |
|
|
|
|
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
@Data |
|
|
|
public class PowerKernelListPostitionResultDTO { |
|
|
|
public class PowerKernelListPostitionResultDTO implements Serializable { |
|
|
|
|
|
|
|
private static final long serialVersionUID = 6456737584156846937L; |
|
|
|
|
|
|
|
/** |
|
|
|
* 房屋id |
|
|
|
*/ |
|
|
|
private String houseId; |
|
|
|
|
|
|
|
/** |
|
|
|
* 经度 |
|
|
|
*/ |
|
|
|
private BigDecimal longitude; |
|
|
|
|
|
|
|
/** |
|
|
|
* 纬度 |
|
|
|
*/ |
|
|
|
private BigDecimal latitude; |
|
|
|
|
|
|
|
/** |
|
|
|
* 房屋地址 |
|
|
|
*/ |
|
|
|
private String address; |
|
|
|
} |
|
|
|