package BranchesMgr.entity;
/**
*
* @author Administrator
*网点信息表
*/
public class Branches {
private int id;
private String name;
private int cityAreatyid;
private String cityName;
public String getCityName() {
return cityName;
}
public void setCityName(String cityName) {
this.cityName = cityName;
}
private String address;
private String telephone;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getCityAreatyid() {
return cityAreatyid;
}
public void setCityAreatyid(int cityAreatyid) {
this.cityAreatyid = cityAreatyid;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getTelephone() {
return telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
}