6 changed files with 85 additions and 7 deletions
@ -0,0 +1,28 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
@Data |
||||
|
public class LonAndLatFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -4097378626418182909L; |
||||
|
|
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 经度 |
||||
|
*/ |
||||
|
private String longitude; |
||||
|
|
||||
|
/** |
||||
|
* 纬度 |
||||
|
*/ |
||||
|
private String latitude; |
||||
|
|
||||
|
/** |
||||
|
* 关联关系 |
||||
|
*/ |
||||
|
private String icResiUser; |
||||
|
} |
Loading…
Reference in new issue