customerform.java

来自「SSH经典练习」· Java 代码 · 共 88 行

JAVA
88
字号
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 + =
减小字号Ctrl + -
显示快捷键?