schoolteachings.java

来自「教务管理系统」· Java 代码 · 共 96 行

JAVA
96
字号
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 + =
减小字号Ctrl + -
显示快捷键?