Area.java
564 Bytes
package com.sincere.student.model;
import java.util.List;
public class Area {
private String code ;
private String name ;
private List<Area> list ;
public List<Area> getList() {
return list;
}
public void setList(List<Area> list) {
this.list = list;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}