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

📄 schoolteachings.java

📁 教务管理系统
💻 JAVA
字号:
package com.zbaccp.ea.entity;

import java.util.Date;

/**
 * Schoolteachings entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Schoolteachings implements java.io.Serializable {

	// Fields

	private String id;
	private Employees employees;
	private Date planStartDate;
	private Date startDate;
	private Date planEndDate;
	private Date endDate;

	// Constructors

	/** default constructor */
	public Schoolteachings() {
	}

	/** minimal constructor */
	public Schoolteachings(String id, Employees employees, Date startDate) {
		this.id = id;
		this.employees = employees;
		this.startDate = startDate;
	}

	/** full constructor */
	public Schoolteachings(String id, Employees employees, Date planStartDate,
			Date startDate, Date planEndDate, Date endDate) {
		this.id = id;
		this.employees = employees;
		this.planStartDate = planStartDate;
		this.startDate = startDate;
		this.planEndDate = planEndDate;
		this.endDate = endDate;
	}

	// Property accessors

	public String getId() {
		return this.id;
	}

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

	public Employees getEmployees() {
		return this.employees;
	}

	public void setEmployees(Employees employees) {
		this.employees = employees;
	}

	public Date getPlanStartDate() {
		return this.planStartDate;
	}

	public void setPlanStartDate(Date planStartDate) {
		this.planStartDate = planStartDate;
	}

	public Date getStartDate() {
		return this.startDate;
	}

	public void setStartDate(Date startDate) {
		this.startDate = startDate;
	}

	public Date getPlanEndDate() {
		return this.planEndDate;
	}

	public void setPlanEndDate(Date planEndDate) {
		this.planEndDate = planEndDate;
	}

	public Date getEndDate() {
		return this.endDate;
	}

	public void setEndDate(Date endDate) {
		this.endDate = endDate;
	}

}

⌨️ 快捷键说明

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