⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 personal.java

📁 Eclipse RCP下编写的工作管理软件代码
💻 JAVA
字号:
package net.sf.pim.model;

import net.sf.util.persistence.AbstractEntry;
import net.sf.util.persistence.EntryTag;
import net.sf.util.persistence.IData;

/**
 * 个人周报
 * @author levin
 * 修订说明:
 * 20061110,将实际时间单位修改为小时,为保持兼容,不更改“minute"字段
 */
@SuppressWarnings("serial")
public class Personal extends AbstractEntry implements IData{
	@EntryTag(desc="周")
	public String week;
	@EntryTag(desc="序号")
	public String num;
	@EntryTag(desc="计划任务")
	public String task;
	@EntryTag(desc="日期")
	public String date;
	@EntryTag(desc="相关人")
	public String staff;
	@EntryTag(desc="计划时间(h)")
	public String hour;
	@EntryTag(desc="验收标准")
	public String criterion;
	@EntryTag(desc="级别")
	public String level;
	@EntryTag(desc="结果")
	public String result;
	@EntryTag(desc="实际时间(h)")
	public String minute;
	
	public Personal() {
		super();
	}

}

⌨️ 快捷键说明

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