customer.java

来自「一个简单的Ext例子」· Java 代码 · 共 96 行

JAVA
96
字号
package com.utils.model;

public class Customer implements java.io.Serializable{
	/**
	 * 
	 */
	private static final long serialVersionUID = 4314882706413997465L;
	private String id;
	private String customerName;
	private String customerAchor;
	private String customerTel;
	private String customerAddress;
	private String customerEmail;
	private String customerNet;
	private String customerBusiness;
	
	public Customer(){}

	public Customer(String id, String customerName, String customerAchor, String customerTel, String customerAddress, String customerEmail, String customerNet, String customerBusiness) {
		super();
		this.id = id;
		this.customerName = customerName;
		this.customerAchor = customerAchor;
		this.customerTel = customerTel;
		this.customerAddress = customerAddress;
		this.customerEmail = customerEmail;
		this.customerNet = customerNet;
		this.customerBusiness = customerBusiness;
	}

	public String getCustomerAchor() {
		return customerAchor;
	}

	public void setCustomerAchor(String customerAchor) {
		this.customerAchor = customerAchor;
	}

	public String getCustomerAddress() {
		return customerAddress;
	}

	public void setCustomerAddress(String customerAddress) {
		this.customerAddress = customerAddress;
	}

	public String getCustomerBusiness() {
		return customerBusiness;
	}

	public void setCustomerBusiness(String customerBusiness) {
		this.customerBusiness = customerBusiness;
	}

	public String getCustomerEmail() {
		return customerEmail;
	}

	public void setCustomerEmail(String customerEmail) {
		this.customerEmail = customerEmail;
	}

	public String getCustomerName() {
		return customerName;
	}

	public void setCustomerName(String customerName) {
		this.customerName = customerName;
	}

	public String getCustomerNet() {
		return customerNet;
	}

	public void setCustomerNet(String customerNet) {
		this.customerNet = customerNet;
	}

	public String getCustomerTel() {
		return customerTel;
	}

	public void setCustomerTel(String customerTel) {
		this.customerTel = customerTel;
	}

	public String getId() {
		return id;
	}

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

⌨️ 快捷键说明

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