📄 tdothing.java
字号:
package com.oa.struts.perOffice.modle;
public class Tdothing {
private int ID; //代办事项编号
private int userId;
private String topic; //代办事项主题
private String content; //代办内容
private int complete; //代办事项是否完成标志
public Tdothing() {
super();
// TODO Auto-generated constructor stub
}
public int getID() {
return ID;
}
public void setID(int id) {
ID = id;
}
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
public String getTopic() {
return topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public int getComplete() {
return complete;
}
public void setComplete(int complete) {
this.complete = complete;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -