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

📄 receiveaddress.java

📁 一个网上购物商城系统
💻 JAVA
字号:
package tarena.entity;

import java.util.HashSet;
import java.util.Set;

/**
 * Receiveaddress generated by MyEclipse Persistence Tools
 */

public class Receiveaddress implements java.io.Serializable {

	// Fields

	private Integer id;

	private User user;

	private Byte isuserdel;

	private String receivename;

	private String province;

	private String city;

	private String area;

	private String address;

	private String zip;

	private String phone;

	private String mobile;

	private Set orderses = new HashSet(0);

	// Constructors

	public Byte getIsuserdel() {
		return isuserdel;
	}

	public void setIsuserdel(Byte isuserdel) {
		this.isuserdel = isuserdel;
	}

	public User getUser() {
		return user;
	}

	public void setUser(User user) {
		this.user = user;
	}

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

	/** minimal constructor */
	public Receiveaddress(String receivename, String province, String city,
			String area, String address, String zip) {
		this.receivename = receivename;
		this.province = province;
		this.city = city;
		this.area = area;
		this.address = address;
		this.zip = zip;
	}

	/** full constructor */
	public Receiveaddress(String receivename, String province, String city,
			String area, String address, String zip, String phone,
			String mobile, Set orderses) {
		this.receivename = receivename;
		this.province = province;
		this.city = city;
		this.area = area;
		this.address = address;
		this.zip = zip;
		this.phone = phone;
		this.mobile = mobile;
		this.orderses = orderses;
	}

	// Property accessors

	public Integer getId() {
		return this.id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getReceivename() {
		return this.receivename;
	}

	public void setReceivename(String receivename) {
		this.receivename = receivename;
	}

	public String getProvince() {
		return this.province;
	}

	public void setProvince(String province) {
		this.province = province;
	}

	public String getCity() {
		return this.city;
	}

	public void setCity(String city) {
		this.city = city;
	}

	public String getArea() {
		return this.area;
	}

	public void setArea(String area) {
		this.area = area;
	}

	public String getAddress() {
		return this.address;
	}

	public void setAddress(String address) {
		this.address = address;
	}

	public String getZip() {
		return this.zip;
	}

	public void setZip(String zip) {
		this.zip = zip;
	}

	public String getPhone() {
		return this.phone;
	}

	public void setPhone(String phone) {
		this.phone = phone;
	}

	public String getMobile() {
		return this.mobile;
	}

	public void setMobile(String mobile) {
		this.mobile = mobile;
	}

	public Set getOrderses() {
		return this.orderses;
	}

	public void setOrderses(Set orderses) {
		this.orderses = orderses;
	}

}

⌨️ 快捷键说明

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