2025-04-14 09:35:36 +08:00

92 lines
1.5 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.cdzy.common.model;
import lombok.Data;
/**
* @author attiya
* @since 2025-03-20
*/
@Data
public class ResGPSDto {
/**
* 经度
*/
private Double longitude;
/**
* 纬度
*/
private Double latitude;
/**
* 外接电池电量该值由控制器提供若控制器不支持此值为0
*/
private Integer soc;
/**
* 外接电源电压,单位:毫伏
*/
private Integer voltage;
/**
* GPS信号强度【0-31】
*/
private Integer gsm;
/**
* 时间戳
*/
private Number timestamp;
/**
* 0: 头盔不在位 1: 头盔在位
*/
private Character helmetExit;
/**
* 0: 头盔锁未上锁 1: 头盔锁已上锁
*/
private Character isHelmetLocked;
/**
* 0:后轮静止 1:后轮转动(轮动状态
*/
private Character isWheelSpin;
/**
* 0:撤防状态 1:设防状态
*/
private Character isDefendOn;
/**
* 0: 车辆静止 1: 车辆移动(运动状态
*/
private Character isMoving;
/**
* 0:电门关闭 1:电门打开
*/
private Character accOn;
/**
* 0:后轮未锁 1:后轮已锁
*/
private Character wheelLocked;
/**
* 0:电池仓未锁 1:电池仓已锁
*/
private Character seatLocked;
/**
* 速度
*/
private Float speed;
/**
* 中文位置
*/
private String chineseLocation;
}