package com.dev_concentrator.data;
|
|
public class Concentrator_SetParam {
|
|
public int dev_id;
|
public int op_cmd;
|
public int BattGroupNum;
|
public int TestCmd;
|
|
public int getDev_id() {
|
return dev_id;
|
}
|
public int getOp_cmd() {
|
return op_cmd;
|
}
|
public int getBattGroupNum() {
|
return BattGroupNum;
|
}
|
public void setDev_id(int dev_id) {
|
this.dev_id = dev_id;
|
}
|
public void setOp_cmd(int op_cmd) {
|
this.op_cmd = op_cmd;
|
}
|
public void setBattGroupNum(int battGroupNum) {
|
BattGroupNum = battGroupNum;
|
}
|
public int getTestCmd() {
|
return TestCmd;
|
}
|
public void setTestCmd(int testCmd) {
|
TestCmd = testCmd;
|
}
|
|
|
}
|