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")
|
||||
public class BatchModel {
|
||||
private int Id;
|
||||
private int id;
|
||||
private int parentId;
|
||||
private int childId;
|
||||
private List<BehaviorModel> behaviors = new ArrayList<BehaviorModel>();
|
||||
|
||||
@XmlElement
|
||||
public int getId() {
|
||||
return Id;
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
Id = id;
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
@XmlElement
|
||||
|
|
Loading…
Reference in New Issue