inter server

This commit is contained in:
ScorpioMiku
2019-09-06 21:22:03 +08:00
parent 13717715de
commit 5184cd4ee6
35 changed files with 2091 additions and 805 deletions

View File

@@ -0,0 +1,55 @@
import java.util.HashMap;
/**
* Created by ScorpioMiku on 2019/9/3.
*/
public class funcList {
private String typeCode;
private String type;
private float cycle;
private float data;
@Override
public String toString() {
return "funcList{" +
"typeCode='" + typeCode + '\'' +
", type='" + type + '\'' +
", cycle=" + cycle +
", data=" + data +
'}';
}
public String getTypeCode() {
return typeCode;
}
public void setTypeCode(String typeCode) {
this.typeCode = typeCode;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public float getCycle() {
return cycle;
}
public void setCycle(float cycle) {
this.cycle = cycle;
}
public float getData() {
return data;
}
public void setData(float data) {
this.data = data;
}
}