change BathcModel Id to id
This commit is contained in:
parent
1b0fa87719
commit
f47d025b38
|
@ -9,18 +9,18 @@ import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
|
||||||
@XmlRootElement(name = "batch")
|
@XmlRootElement(name = "batch")
|
||||||
public class BatchModel {
|
public class BatchModel {
|
||||||
private int Id;
|
private int id;
|
||||||
private int parentId;
|
private int parentId;
|
||||||
private int childId;
|
private int childId;
|
||||||
private List<BehaviorModel> behaviors = new ArrayList<BehaviorModel>();
|
private List<BehaviorModel> behaviors = new ArrayList<BehaviorModel>();
|
||||||
|
|
||||||
@XmlElement
|
@XmlElement
|
||||||
public int getId() {
|
public int getId() {
|
||||||
return Id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(int id) {
|
public void setId(int id) {
|
||||||
Id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@XmlElement
|
@XmlElement
|
||||||
|
|
Loading…
Reference in New Issue