- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 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
- 37
- 38
- 39
- 40
- 41
- 42
- 43
Map<String, TrainingDataLine> trainingMap;
public class TrainingDataLine {
Integer v;
List<RelationSourceBean> r;
public class RelationSourceBean {
Integer e;
Integer n;
public Integer getE() {
return e;
}
public void setE(Integer e) {
this.e = e;
}
public Integer getN() {
return n;
}
public void setN(Integer n) {
this.n = n;
}
}
public Integer getV() {
return v;
}
public void setV(Integer v) {
this.v = v;
}
public List<RelationSourceBean> getR() {
return r;
}
public void setR(List<RelationSourceBean> r) {
this.r = r;
}
}