📄 institution.java
字号:
package com.buat.institution;
public class Institution {
private int id=0;
private String name=null;
private String reason =null;
private String explains=null;
public Institution(String name , String reason, String explains) {
super();
this.name = name;
this.reason = reason;
this.explains = explains;
}
public Institution() {
super();
}
public String getExplains() {
return explains;
}
public void setExplains(String explains) {
this.explains = explains;
}
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Institution(int id, String name , String reason, String explains) {
super();
this.id = id;
this.name = name;
this.reason = reason;
this.explains = explains;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -