weeklycircle.java

来自「上一上传oa系统漏掉web-inf文件夹」· Java 代码 · 共 35 行

JAVA
35
字号
package com.oa.db;

import java.util.Date;

public class Weeklycircle {
	private int id;//关键字
	private int period;//期号
	private Date firstdayofweek;//星期一
	private Date enddayofweek;//星期日
	public Date getEnddayofweek() {
		return enddayofweek;
	}
	public void setEnddayofweek(Date enddayofweek) {
		this.enddayofweek = enddayofweek;
	}
	public Date getFirstdayofweek() {
		return firstdayofweek;
	}
	public void setFirstdayofweek(Date firstdayofweek) {
		this.firstdayofweek = firstdayofweek;
	}
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public int getPeriod() {
		return period;
	}
	public void setPeriod(int period) {
		this.period = period;
	}
}

⌨️ 快捷键说明

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