studentexamines.java

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

JAVA
85
字号
package com.zbaccp.ea.entity;

import java.util.Date;

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

public class Studentexamines implements java.io.Serializable {

	// Fields

	private String id;
	private Employees employees;
	private Date date;
	private String courseId;
	private String remark;

	// Constructors

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

	/** minimal constructor */
	public Studentexamines(String id, Date date) {
		this.id = id;
		this.date = date;
	}

	/** full constructor */
	public Studentexamines(String id, Employees employees, Date date,
			String courseId, String remark) {
		this.id = id;
		this.employees = employees;
		this.date = date;
		this.courseId = courseId;
		this.remark = remark;
	}

	// 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 getDate() {
		return this.date;
	}

	public void setDate(Date date) {
		this.date = date;
	}

	public String getCourseId() {
		return this.courseId;
	}

	public void setCourseId(String courseId) {
		this.courseId = courseId;
	}

	public String getRemark() {
		return this.remark;
	}

	public void setRemark(String remark) {
		this.remark = remark;
	}

}

⌨️ 快捷键说明

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