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

📄 customerinfobean.java

📁 基于struts的网上商店源码
💻 JAVA
字号:
package com.mole.struts.bean;

public class CustomerInfoBean {
	private String ID = null;
	private String loginName = null;
	private String nickname = null;
	private String name = null;
	private String gender = null;
	private String address = null;
	private String password = null;
	private String email = null;
	private String cellphone = null;
	private String telephone = null;
	private String company = null;
	private String createDate = null;
	private String lastLogin = null;
	private String faceImage = null;
	private String faceWidth = null;
	private String faceHeight = null;
	private String blogTitle = null;
	private String blogSubTitle = null;
	private String blogStyle = null;
	private String showRecord = null;
	private String showShopped = null;
	private String interest = null;
	private String description = null;
	private String state = null;
	private String cardID = null;
	private String cardFrom = null;

	public String getState() {
		return state;
	}

	public void setState(String state) {
		this.state = state;
	}

	public CustomerInfoBean() {
	}

	public void setCompany(String company) {
		this.company = company;
	}

	public String getCompany() {
		return company;
	}

	public void setLoginName(String loginName) {
		this.loginName = loginName;
	}

	public String getLoginName() {
		return loginName;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getName() {
		return name;
	}

	public void setGender(String gender) {
		this.gender = gender;
	}

	public String getGender() {
		return gender;
	}

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

	public String getAddress() {
		return address;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public String getPassword() {
		return password;
	}

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

	public String getEmail() {
		return email;
	}

	public void setCellphone(String cellphone) {
		this.cellphone = cellphone;
	}

	public String getCellphone() {
		return cellphone;
	}

	public void setTelephone(String telephone) {
		this.telephone = telephone;
	}

	public String getTelephone() {
		return telephone;
	}

	public String getID() {
		return ID;
	}

	public void setID(String id) {
		ID = id;
	}

	public String getCreateDate() {
		return createDate;
	}

	public void setCreateDate(String createDate) {
		this.createDate = createDate;
	}

	public String getLastLogin() {
		return lastLogin;
	}

	public void setLastLogin(String lastLogin) {
		this.lastLogin = lastLogin;
	}

	public String getFaceImage() {
		return faceImage;
	}

	public void setFaceImage(String faceImage) {
		this.faceImage = faceImage;
	}

	public String getFaceWidth() {
		return faceWidth;
	}

	public void setFaceWidth(String faceWidth) {
		this.faceWidth = faceWidth;
	}

	public String getFaceHeight() {
		return faceHeight;
	}

	public void setFaceHeight(String faceHeight) {
		this.faceHeight = faceHeight;
	}

	public String getBlogStyle() {
		return blogStyle;
	}

	public void setBlogStyle(String blogStyle) {
		this.blogStyle = blogStyle;
	}

	public String getBlogTitle() {
		return blogTitle;
	}

	public void setBlogTitle(String blogTitle) {
		this.blogTitle = blogTitle;
	}

	public String getBlogSubTitle() {
		return blogSubTitle;
	}

	public void setBlogSubTitle(String blogSubTitle) {
		this.blogSubTitle = blogSubTitle;
	}

	public String getNickname() {
		return nickname;
	}

	public void setNickname(String nickname) {
		this.nickname = nickname;
	}

	public String getDescription() {
		return description;
	}

	public void setDescription(String description) {
		this.description = description;
	}

	public String getInterest() {
		return interest;
	}

	public void setInterest(String interest) {
		this.interest = interest;
	}

	public String getShowRecord() {
		return showRecord;
	}

	public void setShowRecord(String showRecord) {
		this.showRecord = showRecord;
	}

	public String getShowShopped() {
		return showShopped;
	}

	public void setShowShopped(String showShopped) {
		this.showShopped = showShopped;
	}

	public String getCardID() {
		return cardID;
	}

	public void setCardID(String cardID) {
		this.cardID = cardID;
	}

	public String getCardFrom() {
		return cardFrom;
	}

	public void setCardFrom(String cardFrom) {
		this.cardFrom = cardFrom;
	}
}

⌨️ 快捷键说明

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