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

📄 member.java

📁 C2C购物网站 含有数据库 解压后readme.txt里有详细说明
💻 JAVA
字号:
package com.shop;

import org.apache.struts.action.ActionForm;

/**
 * Member generated by MyEclipse Persistence Tools
 */

public class Member extends ActionForm implements java.io.Serializable {

	// Fields

	private Integer id;

	private String userName;

	private String trueName;

	private String passwd;

	private String photo;

	private String address;

	private String postcode;

	private String tel;

	private String email;

	private String qq;

	private Double money;

	private String freeze;

	// Constructors

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

	/** full constructor */
	public Member(String userName, String trueName, String passwd,
			String photo, String address, String postcode, String tel,
			String email, String qq, Double money, String freeze) {
		this.userName = userName;
		this.trueName = trueName;
		this.passwd = passwd;
		this.photo = photo;
		this.address = address;
		this.postcode = postcode;
		this.tel = tel;
		this.email = email;
		this.qq = qq;
		this.money = money;
		this.freeze = freeze;
	}

	// Property accessors
	

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

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

	public String getUserName() {
		return this.userName;
	}

	public void setUserName(String userName) {
		this.userName = userName;
	}

	public String getTrueName() {
		return this.trueName;
	}

	public void setTrueName(String trueName) {
		this.trueName = trueName;
	}

	public String getPasswd() {
		return this.passwd;
	}

	public void setPasswd(String passwd) {
		this.passwd = passwd;
	}

	public String getPhoto() {
		return this.photo;
	}

	public void setPhoto(String photo) {
		this.photo = photo;
	}

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

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

	public String getPostcode() {
		return this.postcode;
	}

	public void setPostcode(String postcode) {
		this.postcode = postcode;
	}

	public String getTel() {
		return this.tel;
	}

	public void setTel(String tel) {
		this.tel = tel;
	}

	public String getEmail() {
		return this.email;
	}

	public void setEmail(String email) {
		this.email = email;
	}

	public String getQq() {
		return this.qq;
	}

	public void setQq(String qq) {
		this.qq = qq;
	}

	public Double getMoney() {
		return this.money;
	}

	public void setMoney(Double money) {
		this.money = money;
	}

	public String getFreeze() {
		return this.freeze;
	}

	public void setFreeze(String freeze) {
		this.freeze = freeze;
	}

}

⌨️ 快捷键说明

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