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