添加注入
parent
f08b15903d
commit
b034a8bbda
|
@ -1,217 +0,0 @@
|
|||
package com.god.base.common.domain;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import org.apache.poi.hpsf.Decimal;
|
||||
|
||||
import java.math.BigInteger;
|
||||
|
||||
/**
|
||||
* 报文
|
||||
*
|
||||
* @author ChenXinHai
|
||||
* @version 2023/11/23 - 19:13
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class MessageModel {
|
||||
/**
|
||||
* 消息标识
|
||||
*/
|
||||
private Integer messageId;
|
||||
/**
|
||||
* VIN
|
||||
*/
|
||||
private String vin;
|
||||
/**
|
||||
* 经度
|
||||
*/
|
||||
private Decimal longitude;
|
||||
/**
|
||||
* 维度
|
||||
*/
|
||||
private Decimal latitude;
|
||||
/**
|
||||
* 速度
|
||||
*/
|
||||
private Decimal speed;
|
||||
/**
|
||||
* 时间戳
|
||||
*/
|
||||
private BigInteger timeString;
|
||||
/**
|
||||
* 里程
|
||||
*/
|
||||
private Decimal sumMileage;
|
||||
/**
|
||||
* 总电压
|
||||
*/
|
||||
private Decimal sumElectricity;
|
||||
/**
|
||||
* 绝缘电阻
|
||||
*/
|
||||
private Decimal sumResistance;
|
||||
/**
|
||||
* 档位
|
||||
*/
|
||||
private String gear;
|
||||
/**
|
||||
* 加速踏板行程值
|
||||
*/
|
||||
private Decimal accelerationPedal;
|
||||
/**
|
||||
* 制动踏板行程值
|
||||
*/
|
||||
private Decimal brakePedal;
|
||||
/**
|
||||
* 燃料消耗率
|
||||
*/
|
||||
private Decimal specificFuelConsumption;
|
||||
/**
|
||||
* 电机控制器温度
|
||||
*/
|
||||
private Decimal motorControllerTemperature;
|
||||
/**
|
||||
* 电机转速
|
||||
*/
|
||||
private BigInteger motorSpeed;
|
||||
/**
|
||||
* 电机转矩
|
||||
*/
|
||||
private BigInteger motorTorque;
|
||||
/**
|
||||
* 电机温度
|
||||
*/
|
||||
private Decimal motorTemperature;
|
||||
/**
|
||||
* 电机电压
|
||||
*/
|
||||
private Decimal motorTage;
|
||||
/**
|
||||
* 电机电流
|
||||
*/
|
||||
private Decimal motorCurrent;
|
||||
/**
|
||||
* 动力电池剩余电流SOC
|
||||
*/
|
||||
private Decimal remainingBattery;
|
||||
/**
|
||||
* 当前状态允许的最大反馈功率
|
||||
*/
|
||||
private Decimal maximumFeedbackPower;
|
||||
/**
|
||||
* 当前状态允许的最大放电功率
|
||||
*/
|
||||
private Decimal maximumDischargePower;
|
||||
/**
|
||||
* BMS自检计数器
|
||||
*/
|
||||
private Integer selfCheckCounter;
|
||||
/**
|
||||
* 动力电池充放电电流
|
||||
*/
|
||||
private Decimal totalBatteryCurrent;
|
||||
/**
|
||||
* 动力电池负载端总电压V3
|
||||
*/
|
||||
private Decimal totalBatteryVoltage;
|
||||
/**
|
||||
* 单次最大电压
|
||||
*/
|
||||
private Decimal singleBatteryMaxVoltage;
|
||||
/**
|
||||
* 单体电池最低电压
|
||||
*/
|
||||
private Decimal singleBatteryMinVoltage;
|
||||
/**
|
||||
* 单体电池最高温度
|
||||
*/
|
||||
private Decimal singleBatteryMaxTemperature;
|
||||
/**
|
||||
* 单体电池最低温度
|
||||
*/
|
||||
private Decimal singleBatteryMinTemperature;
|
||||
/**
|
||||
* 动力电池可用容量
|
||||
*/
|
||||
private Decimal availableBatteryCapacity;
|
||||
/**
|
||||
* 车辆状态
|
||||
*/
|
||||
private Integer vehicleStatus;
|
||||
/**
|
||||
* 充电状态
|
||||
*/
|
||||
private Integer chargingStatus;
|
||||
/**
|
||||
* 运行状态
|
||||
*/
|
||||
private Integer operatingStatus;
|
||||
/**
|
||||
* SOC
|
||||
*/
|
||||
private Integer socStatus;
|
||||
/**
|
||||
* 可充电储能装置工作状态
|
||||
*/
|
||||
private Integer chargingEnergyStorageStatus;
|
||||
/**
|
||||
* 驱动电机状态
|
||||
*/
|
||||
private Integer driveMotorStatus;
|
||||
/**
|
||||
* 定位是否有效
|
||||
*/
|
||||
private Integer positionStatus;
|
||||
/**
|
||||
* EAS
|
||||
*/
|
||||
private Integer easStatus;
|
||||
/**
|
||||
* PTC
|
||||
*/
|
||||
private Integer ptcStatus;
|
||||
/**
|
||||
* EPS
|
||||
*/
|
||||
private Integer epsStatus;
|
||||
/**
|
||||
* ABS
|
||||
*/
|
||||
private Integer absStatus;
|
||||
/**
|
||||
* MCU
|
||||
*/
|
||||
private Integer mcuStatus;
|
||||
/**
|
||||
* 动力电池加热状态
|
||||
*/
|
||||
private Integer heatingStatus;
|
||||
/**
|
||||
* 动力电池当前状态
|
||||
*/
|
||||
private Integer batteryStatus;
|
||||
/**
|
||||
* 动力电池保温状态
|
||||
*/
|
||||
private Integer batteryInsulationStatus;
|
||||
/**
|
||||
* DCDC
|
||||
*/
|
||||
private Integer dcdcStatus;
|
||||
/**
|
||||
* CHG
|
||||
*/
|
||||
private Integer chgStatus;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue