|
@ -1,8 +1,10 @@ |
|
|
package com.epmet.evaluationindex.screen.dto.result; |
|
|
package com.epmet.evaluationindex.screen.dto.result; |
|
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
import java.io.Serializable; |
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* @description: |
|
|
* @description: |
|
@ -29,4 +31,10 @@ public class ScreenProjectDistributionResultDTO implements Serializable { |
|
|
*/ |
|
|
*/ |
|
|
private String longitude; |
|
|
private String longitude; |
|
|
private String latitude; |
|
|
private String latitude; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private String customerId; |
|
|
|
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
|
|
private Date projectCreateTime; |
|
|
} |
|
|
} |
|
|