⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 homeaddress.java

📁 hibernate的经典练习
💻 JAVA
字号:
package com.ghy.test6;

import java.io.Serializable;

public class HomeAddress implements Serializable 
{

	private String province ;
	private String city ;
	private String street ;
	private String code ;
	private Customers customers ;
	public HomeAddress(String province, String city, String street,
			String code, Customers customers) {
		super();
		this.province = province;
		this.city = city;
		this.street = street;
		this.code = code;
		this.customers = customers;
	}
	public HomeAddress() {
		super();
		// TODO Auto-generated constructor stub
	}
	public String getProvince() {
		return province;
	}
	public void setProvince(String province) {
		this.province = province;
	}
	public String getCity() {
		return city;
	}
	public void setCity(String city) {
		this.city = city;
	}
	public String getStreet() {
		return street;
	}
	public void setStreet(String street) {
		this.street = street;
	}
	public String getCode() {
		return code;
	}
	public void setCode(String code) {
		this.code = code;
	}
	public Customers getCustomers() {
		return customers;
	}
	public void setCustomers(Customers customers) {
		this.customers = customers;
	}
	
	
	
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -