📄 startenddaymonth.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -