📄 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 + -