?? information.java
字號:
package com.ghy.data.customer;
import java.io.Serializable;
public class Information implements Serializable {
private String REALNAME ;
private String TYPE ;
private String ADDRESS ;
private String CODE ;
private String EMAINL ;
private Customer customer ;
/**
* @return the cODE
*/
public String getCODE() {
return CODE;
}
/**
* @param code the cODE to set
*/
public void setCODE(String code) {
CODE = code;
}
public Information() {
super();
// TODO Auto-generated constructor stub
}
public Information(String realname, String type, String address, String code,
String emainl, Customer customer) {
super();
REALNAME = realname;
TYPE = type;
ADDRESS = address;
CODE = code;
EMAINL = emainl;
this.customer = customer;
}
/**
* @return the rEALNAME
*/
public String getREALNAME() {
return REALNAME;
}
/**
* @param realname the rEALNAME to set
*/
public void setREALNAME(String realname) {
REALNAME = realname;
}
/**
* @return the tYPE
*/
public String getTYPE() {
return TYPE;
}
/**
* @param type the tYPE to set
*/
public void setTYPE(String type) {
TYPE = type;
}
/**
* @return the aDDRESS
*/
public String getADDRESS() {
return ADDRESS;
}
/**
* @param address the aDDRESS to set
*/
public void setADDRESS(String address) {
ADDRESS = address;
}
/**
* @return the eMAINL
*/
public String getEMAINL() {
return EMAINL;
}
/**
* @param emainl the eMAINL to set
*/
public void setEMAINL(String emainl) {
EMAINL = emainl;
}
/**
* @return the customer
*/
public Customer getCustomer() {
return customer;
}
/**
* @param customer the customer to set
*/
public void setCustomer(Customer customer) {
this.customer = customer;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -