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

📄 customerform.java

📁 SSH经典练习
💻 JAVA
字号:
package com.ghy.form;

import org.apache.struts.action.ActionForm;

public class CustomerForm extends ActionForm{

	private String action = null;
    private String id = null;
    private String customerName = null;
    private String homeProvince = null;
    private String homeCity = null;
    private String homeStreet = null;
    private String homeZipcode = null;
    private String comProvince = null;
    private String comCity = null;
    private String comStreet = null;
    private String comZipcode = null;
    
	public String getAction() {
		return action;
	}
	public void setAction(String action) {
		this.action = action;
	}
	public String getComCity() {
		return comCity;
	}
	public void setComCity(String comCity) {
		this.comCity = comCity;
	}
	public String getComProvince() {
		return comProvince;
	}
	public void setComProvince(String comProvince) {
		this.comProvince = comProvince;
	}
	public String getComStreet() {
		return comStreet;
	}
	public void setComStreet(String comStreet) {
		this.comStreet = comStreet;
	}
	public String getComZipcode() {
		return comZipcode;
	}
	public void setComZipcode(String comZipcode) {
		this.comZipcode = comZipcode;
	}
	public String getCustomerName() {
		return customerName;
	}
	public void setCustomerName(String customerName) {
		this.customerName = customerName;
	}
	public String getHomeCity() {
		return homeCity;
	}
	public void setHomeCity(String homeCity) {
		this.homeCity = homeCity;
	}
	public String getHomeProvince() {
		return homeProvince;
	}
	public void setHomeProvince(String homeProvince) {
		this.homeProvince = homeProvince;
	}
	public String getHomeStreet() {
		return homeStreet;
	}
	public void setHomeStreet(String homeStreet) {
		this.homeStreet = homeStreet;
	}
	public String getHomeZipcode() {
		return homeZipcode;
	}
	public void setHomeZipcode(String homeZipcode) {
		this.homeZipcode = homeZipcode;
	}
	public String getId() {
		return id;
	}
	public void setId(String id) {
		this.id = id;
	}

	
}

⌨️ 快捷键说明

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