startenddaymonth.java

来自「struts+spring+hibernate自创框架」· Java 代码 · 共 44 行

JAVA
44
字号
package com.pegasus.framework.bo;

import java.io.Serializable;
import java.sql.Date;

import com.pegasus.framework.util.DateUtils;

public class StartEndDayMonth implements Serializable {
	private Date firstDay = null;
	private Date endDay = null;
	
	public String toString() {
		String result = "";
		result += DateUtils.format(firstDay);
		result += DateUtils.format(endDay);
		return result;
	}
	/**
	 * @return Returns the endDay.
	 */
	public Date getEndDay() {
		return endDay;
	}
	/**
	 * @param endDay The endDay to set.
	 */
	public void setEndDay(Date endDay) {
		this.endDay = endDay;
	}
	/**
	 * @return Returns the firstDay.
	 */
	public Date getFirstDay() {
		return firstDay;
	}
	/**
	 * @param firstDay The firstDay to set.
	 */
	public void setFirstDay(Date firstDay) {
		this.firstDay = firstDay;
	}
	
}

⌨️ 快捷键说明

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