?? branch.java
字號:
package com.toa.abs.model;
/**
* 營業(yè)網(wǎng)點類
* @author tangliang
*
*/
public class Branch {
/**
* 網(wǎng)點編號
*/
private int id;//網(wǎng)點編號
/**
* 網(wǎng)點名稱
*/
private String name;
/**
* 網(wǎng)點地址
*/
private String address;
/**
* 網(wǎng)點電話
*/
private String telephone;
/**
* 所在省份
*/
private String province;
/**
* 所在城市
*/
private String city;
public Branch(int id, String name, String address, String telephone, String province, String city) {
super();
this.id = id;
this.name = name;
this.address = address;
this.telephone = telephone;
this.province = province;
this.city = city;
}
public Branch() {
super();
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
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 String getProvince() {
return province;
}
public void setProvince(String province) {
this.province = province;
}
public String getTelephone() {
return telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -