post.java
来自「简单的医院系统」· Java 代码 · 共 62 行
JAVA
62 行
package com.tsinghuait.st0717.hospitalsystem.dto;
/**
* Post generated by MyEclipse - Hibernate Tools
*/
public class Post implements java.io.Serializable {
// Fields
private Integer id;
private String name;
// Constructors
/** default constructor */
public Post() {
}
/** minimal constructor */
public Post(Integer id) {
this.id = id;
}
/** full constructor */
public Post(Integer id, String name) {
this.id = id;
this.name = name;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?