package com.fgkj.dto.ram;
|
|
import com.fgkj.dto.BattInf;
|
import com.fgkj.dto.Page;
|
|
public class FBS9100 {
|
private BattInf binf;
|
private Fbs9100_setparam fsparam;
|
private Fbs9100_state fstate;
|
private Fbs9100s_dcdc_state fd;
|
private Page page;
|
|
public FBS9100() {
|
super();
|
}
|
public BattInf getBinf() {
|
return binf;
|
}
|
public void setBinf(BattInf binf) {
|
this.binf = binf;
|
}
|
public Fbs9100_setparam getFsparam() {
|
return fsparam;
|
}
|
public void setFsparam(Fbs9100_setparam fsparam) {
|
this.fsparam = fsparam;
|
}
|
public Fbs9100_state getFstate() {
|
return fstate;
|
}
|
public void setFstate(Fbs9100_state fstate) {
|
this.fstate = fstate;
|
}
|
|
public Fbs9100s_dcdc_state getFd() {
|
return fd;
|
}
|
public void setFd(Fbs9100s_dcdc_state fd) {
|
this.fd = fd;
|
}
|
public Page getPage() {
|
return page;
|
}
|
public void setPage(Page page) {
|
this.page = page;
|
}
|
@Override
|
public String toString() {
|
return "FBS9100 [binf=" + binf + ", fsparam=" + fsparam + ", fstate="
|
+ fstate + ", fd=" + fd + ", page=" + page + "]";
|
}
|
|
|
|
|
}
|