📄 branch.java
字号:
package com.toa.abs.model;
/**
* 营业网点类
* @author tangliang
*
*/
public class Branch {
/**
* 网点编号
*/
private int id;//网点编号
/**
* 网点名称
*/
private String name;
/**
* 网点地址
*/
private String address;
/**
* 网点电话
*/
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;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -