DELL
2024-08-31 7beb5d636d220904dbfe58f3560477648cf79d81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.fgkj.pojo;
 
import lombok.Data;
 
@Data
public class Dev_A200_TestParam {
 
 
    public Integer dev_id;                          //'设备ID',
    public Integer op_cmd;                          //'命令',
    public Integer return_code;                     //'返回响应码',
    public Double battery_name;                     //'pack/模组号',
    public Double nominal_capacity;                 //'标称容量(AH)',
    public Integer battery_type;                    //'电池类型[0-磷酸铁锂  1-三元锂   2-太酸锂 4-锰酸锂]',
    public Integer battery_number;                  //'电芯串数',
    public Double diff_battery_voltage;             //'电芯压差',
    public Double discharge_current;                //'放电目标电压',
    public Integer discharge_time;                  //'放电时间(秒)',
    public Double discharge_capacity;               //'预放容量(AH)',
    public Integer is_discharge_capacity_enable;    //'预放容量限制是否开启',
    public Double min_battery_voltage;              //'单串下限(V)',
    public Double is_min_battery_voltage_enable;    //'单串下限是否开启',
    public Double charge_voltage;                   //'充电目标电压(V)',
    public Double charge_protect_voltage;           //充电保护电压',
    public Double charge_current;                   //'充电电流(A)',
    public Double charge_stop_current;              //'充电停机电流(A)',
    public Integer charge_time;                     //'充电时间(秒)',
    public Double charge_capacity;                  //'充电容量',
    public Integer is_charge_capacity_enable;       //'预充容量限制是否开启',
    public Double max_battery_voltage;              //单串上限',
    public Integer is_max_battery_voltage_enable;   //'单串上限限制是否开启',
    public Double charge_power;                     //'充电功率(KW)',
    public Integer battery_temperature_protect;     //'单体温度保护',
 
 
}