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

📄 address.java

📁 Hibernate中的映射例子
💻 JAVA
字号:
package test.o2o.pojo;

/**
 * Address entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Address implements java.io.Serializable {

	// Fields

	private Integer aid;
	private String acity;
	private String aroad;

	// Constructors

	/** default constructor */
	public Address() {
	}

	/** minimal constructor */
	public Address(Integer aid) {
		this.aid = aid;
	}

	/** full constructor */
	public Address(Integer aid, String acity, String aroad) {
		this.aid = aid;
		this.acity = acity;
		this.aroad = aroad;
	}

	// Property accessors

	public Integer getAid() {
		return this.aid;
	}

	public void setAid(Integer aid) {
		this.aid = aid;
	}

	public String getAcity() {
		return this.acity;
	}

	public void setAcity(String acity) {
		this.acity = acity;
	}

	public String getAroad() {
		return this.aroad;
	}

	public void setAroad(String aroad) {
		this.aroad = aroad;
	}
}

⌨️ 快捷键说明

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