📄 scheduler.java
字号:
package net.sf.pim.scheduler;
import net.sf.util.persistence.AbstractEntry;
import net.sf.util.persistence.EntryTag;
import net.sf.util.persistence.IData;
/**
* 任务提醒
* @author levin
# Tasks planification configuration file.
# IMPORTANT: All the index begin in 0, except day of month and
# month that begin in 1.
# minute 0-59
# hour 0-23
# day of month 1-31
# month 1-12
# day of week 0-6 (0 is Sunday)
*/
@SuppressWarnings("serial")
public class Scheduler extends AbstractEntry implements IData{
@EntryTag(desc="标题")
public String title;
@EntryTag(desc="分钟")
public String minute;
@EntryTag(desc="小时")
public String hour;
@EntryTag(desc="天")
public String day;
@EntryTag(desc="月")
public String month;
@EntryTag(desc="周")
public String week;
@EntryTag(desc="命令")
public String command;
@EntryTag(desc="参数")
public String param;
@EntryTag(desc="是否暂停")
public String suspend;
public Scheduler() {
super();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -