change BathcModel Id to id

This commit is contained in:
hmm 2014-08-22 14:10:10 +08:00
parent 1b0fa87719
commit f47d025b38
1 changed files with 3 additions and 3 deletions

View File

@ -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