7 changed files with 83 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||
package com.epmet.plugin.power.dto.axis.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class PowerKernelListPostitionFormDTO { |
|||
private String axisStructId; |
|||
private int limit; |
|||
} |
@ -0,0 +1,13 @@ |
|||
package com.epmet.plugin.power.dto.axis.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
@Data |
|||
public class PowerKernelListPostitionResultDTO { |
|||
private String houseId; |
|||
private BigDecimal longitude; |
|||
private BigDecimal latitude; |
|||
private String address; |
|||
} |
Loading…
Reference in new issue