⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 employee.java

📁 SME框架(Swing)开发实例,使用SME框架开发桌面应用程序
💻 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;
	}

}

⌨️ 快捷键说明

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