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

📄 stuscore.java

📁 初学着 hibernate 基本应用 基本语法, Hibernate 高级分页技术 以及分页是要注意的地方
💻 JAVA
字号:
package com.accp.entity;

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

public class Stuscore implements java.io.Serializable {

	// Fields

	private Long id;
	private Stuinfo stuinfo;
	private String course;
	private Long score;

	// Constructors

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

	/** minimal constructor */
	public Stuscore(Long id, Stuinfo stuinfo) {
		this.id = id;
		this.stuinfo = stuinfo;
	}

	/** full constructor */
	public Stuscore(Long id, Stuinfo stuinfo, String course, Long score) {
		this.id = id;
		this.stuinfo = stuinfo;
		this.course = course;
		this.score = score;
	}

	// Property accessors

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

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

	public Stuinfo getStuinfo() {
		return this.stuinfo;
	}

	public void setStuinfo(Stuinfo stuinfo) {
		this.stuinfo = stuinfo;
	}

	public String getCourse() {
		return this.course;
	}

	public void setCourse(String course) {
		this.course = course;
	}

	public Long getScore() {
		return this.score;
	}

	public void setScore(Long score) {
		this.score = score;
	}

}

⌨️ 快捷键说明

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