12345678910111213141516171819202122232425262728 |
- 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;
- private String positionDescribe;
- }
- }
|