address.java
来自「加拿大达内科技有限公司配需java程序员的上课时的代码」· Java 代码 · 共 51 行
JAVA
51 行
package com.csd080111.bank.biz.entity;
public class Address {
private String oid;
private String city;
private String street;
private String zipcode;
private Account account;
public Address() {
super();
}
public Address(String city, String street, String zipcode) {
super();
this.city = city;
this.street = street;
this.zipcode = zipcode;
}
public Account getAccount() {
return account;
}
public void setAccount(Account account) {
this.account = account;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getOid() {
return oid;
}
public void setOid(String oid) {
this.oid = oid;
}
public String getStreet() {
return street;
}
public void setStreet(String street) {
this.street = street;
}
public String getZipcode() {
return zipcode;
}
public void setZipcode(String zipcode) {
this.zipcode = zipcode;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?