tdothing.java

来自「实现办公自动化系统」· Java 代码 · 共 58 行

JAVA
58
字号
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 + =
减小字号Ctrl + -
显示快捷键?