|
|
@ -1,5 +1,6 @@ |
|
|
package com.inspect.partrolresult.domain; |
|
|
package com.inspect.partrolresult.domain; |
|
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty; |
|
|
import lombok.Getter; |
|
|
import lombok.Getter; |
|
|
import lombok.Setter; |
|
|
import lombok.Setter; |
|
|
|
|
|
|
|
|
@ -12,7 +13,9 @@ public class ResultValue implements Serializable { |
|
|
private Long lineId; |
|
|
private Long lineId; |
|
|
private String areaName; |
|
|
private String areaName; |
|
|
private String deviceName; |
|
|
private String deviceName; |
|
|
|
|
|
@JsonProperty(value = "patroldeviceName") |
|
|
private String patrolDeviceName; |
|
|
private String patrolDeviceName; |
|
|
|
|
|
@JsonProperty(value = "patrolpointName") |
|
|
private String patrolPointName; |
|
|
private String patrolPointName; |
|
|
private String value; |
|
|
private String value; |
|
|
private String createTime; |
|
|
private String createTime; |
|
|
|