package com.electrical.FourKW;
|
|
public class Electric_Control_Single {
|
public int electric_id; //µçÔ´id
|
public float upsetcurr; //ÉÏλ»úÉ趨µçÁ÷
|
public float upsetvol; //ÉÏλ»úÉ趨µçѹ
|
public int convolcontrol; //ºãѹ¿ØÖÆ
|
public int concurrcontrol; //ºãÁ÷¿ØÖÆ
|
public int othermodes; //ÆäËûģʽÔËÐÐ
|
public int parallelmodes; //²¢ÁªÎÈѹÔËÐÐ
|
public int startposition; //Æô¶¯Î»
|
public int stopposition; //ֹͣλ
|
public int resetposition; //¸´Î»
|
public int fanstart; //·ç»úÆô¶¯
|
public int fanstop; //·ç»úÍ£Ö¹
|
public float dcvol; //Ö±Á÷µçѹ
|
public float dccurr; //Ö±Á÷µçÁ÷
|
public float controlangle; //¿ØÖƽÇ
|
|
public Electric_Control_Single(int electric_id) {
|
this.electric_id = electric_id;
|
}
|
public int getElectric_id() {
|
return electric_id;
|
}
|
public float getUpsetcurr() {
|
return upsetcurr;
|
}
|
public float getUpsetvol() {
|
return upsetvol;
|
}
|
public int getConvolcontrol() {
|
return convolcontrol;
|
}
|
public int getConcurrcontrol() {
|
return concurrcontrol;
|
}
|
public int getOthermodes() {
|
return othermodes;
|
}
|
public int getParallelmodes() {
|
return parallelmodes;
|
}
|
public int getStartposition() {
|
return startposition;
|
}
|
public int getStopposition() {
|
return stopposition;
|
}
|
public int getResetposition() {
|
return resetposition;
|
}
|
public int getFanstart() {
|
return fanstart;
|
}
|
public int getFanstop() {
|
return fanstop;
|
}
|
public float getDcvol() {
|
return dcvol;
|
}
|
public float getDccurr() {
|
return dccurr;
|
}
|
public float getControlangle() {
|
return controlangle;
|
}
|
public void setElectric_id(int electric_id) {
|
this.electric_id = electric_id;
|
}
|
public void setUpsetcurr(float upsetcurr) {
|
this.upsetcurr = upsetcurr;
|
}
|
public void setUpsetvol(float upsetvol) {
|
this.upsetvol = upsetvol;
|
}
|
public void setConvolcontrol(int convolcontrol) {
|
this.convolcontrol = convolcontrol;
|
}
|
public void setConcurrcontrol(int concurrcontrol) {
|
this.concurrcontrol = concurrcontrol;
|
}
|
public void setOthermodes(int othermodes) {
|
this.othermodes = othermodes;
|
}
|
public void setParallelmodes(int parallelmodes) {
|
this.parallelmodes = parallelmodes;
|
}
|
public void setStartposition(int startposition) {
|
this.startposition = startposition;
|
}
|
public void setStopposition(int stopposition) {
|
this.stopposition = stopposition;
|
}
|
public void setResetposition(int resetposition) {
|
this.resetposition = resetposition;
|
}
|
public void setFanstart(int fanstart) {
|
this.fanstart = fanstart;
|
}
|
public void setFanstop(int fanstop) {
|
this.fanstop = fanstop;
|
}
|
public void setDcvol(float dcvol) {
|
this.dcvol = dcvol;
|
}
|
public void setDccurr(float dccurr) {
|
this.dccurr = dccurr;
|
}
|
public void setControlangle(float controlangle) {
|
this.controlangle = controlangle;
|
}
|
}
|