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

📄 auctionuser.java

📁 网上拍卖系统
💻 JAVA
字号:
package org.yeeku.model;

import java.io.Serializable;
import java.util.Set;
import java.util.HashSet;
import java.io.Serializable;
/**
 * @author  yeeku.H.lee kongyeeku@163.com
 * @version  1.0
 * <br>Copyright (C), 2005-2008, yeeku.H.Lee
 * <br>This program is protected by copyright laws.
 * <br>Program Name:
 * <br>Date: 
 */
public class AuctionUser implements Serializable
{
    //标识属性
	private Integer id;
	//用户名属性
	private String username;
	//密码属性
	private String userpass;
	//电子邮件属性
	private String email;

	private String password2;
	private String name;
	private String address;
	private String phone;
	private String zipcode;
	
	
	//根据属主关联的物品实体
	private Set<Item> itemsByOwner = new HashSet<Item>();
	//根据赢取者关联的物品实体
	private Set<Item> itemsByWiner = new HashSet<Item>();
	//该用户所参与的全部竞价
	private Set<Bid> bids = new HashSet<Bid>();
    public Set<Bid> getBids() {
        return bids;
    }
    public void setBids(Set<Bid> bids) {
        this.bids = bids;
    }
    public String getEmail() {
        return email;
    }
    public void setEmail(String email) {
        this.email = email;
    }
    public Integer getId() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public Set<Item> getItemsByOwner() {
        return itemsByOwner;
    }
    public void setItemsByOwner(Set<Item> itemsByOwner) {
        this.itemsByOwner = itemsByOwner;
    }
    public Set<Item> getItemsByWiner() {
        return itemsByWiner;
    }
    public void setItemsByWiner(Set<Item> itemsByWiner) {
        this.itemsByWiner = itemsByWiner;
    }
    public String getUsername() {
        return username;
    }
    public void setUsername(String username) {
        this.username = username;
    }
    public String getUserpass() {
        return userpass;
    }
    public void setUserpass(String userpass) {
        this.userpass = userpass;
    }
	public String getAddress() {
		return address;
	}
	public void setAddress(String address) {
		this.address = address;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getPassword2() {
		return password2;
	}
	public void setPassword2(String password2) {
		this.password2 = password2;
	}
	public String getPhone() {
		return phone;
	}
	public void setPhone(String phone) {
		this.phone = phone;
	}
	public String getZipcode() {
		return zipcode;
	}
	public void setZipcode(String zipcode) {
		this.zipcode = zipcode;
	}


}

⌨️ 快捷键说明

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