article.java

来自「jsp环境开发的一个博客网站」· Java 代码 · 共 40 行

JAVA
40
字号
package com.Hibernate.persistence;

public class Article {
  private int id;
  private int typeID;
  private String title;
  private String content;
  private String phTime;
public String getContent() {
	return content;
}
public void setContent(String content) {
	this.content = content;
}
public int getId() {
	return id;
}
public void setId(int id) {
	this.id = id;
}
public String getPhTime() {
	return phTime;
}
public void setPhTime(String phTime) {
	this.phTime = phTime;
}
public String getTitle() {
	return title;
}
public void setTitle(String title) {
	this.title = title;
}
public int getTypeID() {
	return typeID;
}
public void setTypeID(int typeID) {
	this.typeID = typeID;
}
}

⌨️ 快捷键说明

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