?? employee.java
字號:
/**
* @(#)Employee.java 1.0 2007-9-20
*
* Copyright 2007 Sino-Gain, Inc. All rights reserved.
* @author Fengyiyun
*/
package com.sme.demo.model;
import java.io.Serializable;
public class Employee implements Serializable {
private String id;
private String leadid;
private String name;
private String sex;
private String age;
private String marry;
private String country;
private String position;
private String educational;
/**
* @return the age
*/
public String getAge() {
return age;
}
/**
* @param age
* the age to set
*/
public void setAge(String age) {
this.age = age;
}
/**
* @return the country
*/
public String getCountry() {
return country;
}
/**
* @param country
* the country to set
*/
public void setCountry(String country) {
this.country = country;
}
/**
* @return the educational
*/
public String getEducational() {
return educational;
}
/**
* @param educational
* the educational to set
*/
public void setEducational(String educational) {
this.educational = educational;
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id
* the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the leadid
*/
public String getLeadid() {
return leadid;
}
/**
* @param leadid
* the leadid to set
*/
public void setLeadid(String leadid) {
this.leadid = leadid;
}
/**
* @return the marry
*/
public String getMarry() {
return marry;
}
/**
* @param marry
* the marry to set
*/
public void setMarry(String marry) {
this.marry = marry;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name
* the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the position
*/
public String getPosition() {
return position;
}
/**
* @param position
* the position to set
*/
public void setPosition(String position) {
this.position = position;
}
/**
* @return the sex
*/
public String getSex() {
return sex;
}
/**
* @param sex
* the sex to set
*/
public void setSex(String sex) {
this.sex = sex;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -