123456789101112131415161718192021222324252627 |
- package info.aspirecn.iov.sjjh.entity;
- import lombok.Data;
- import java.util.List;
- /**
- * @author xusonglin
- * @version V1.0
- **/
- @Data
- public class VehicleHistoryPositionResponse {
- private String resultCode;
- private String resultMsg;
- private String traceId;
- private List<Data> data;
- @lombok.Data
- public static class Data {
- private String positionTime;
- private String longitudeDegree;
- private String latitudeDegree;
- private String speed;
- private String directionOfVehicle;
- }
- }
|