syfxdmny.java
来自「struts hibernate spring」· Java 代码 · 共 61 行
JAVA
61 行
package com.syfxapp.pojo;
import java.util.Date;
/**
* SyfxDmNy entity. @author MyEclipse Persistence Tools
*/
public class SyfxDmNy implements java.io.Serializable {
// Fields
private Date firstDay;
private Date lastDay;
private String ny;
// Constructors
/** default constructor */
public SyfxDmNy() {
}
/** minimal constructor */
public SyfxDmNy(Date firstDay) {
this.firstDay = firstDay;
}
/** full constructor */
public SyfxDmNy(Date firstDay, Date lastDay, String ny) {
this.firstDay = firstDay;
this.lastDay = lastDay;
this.ny = ny;
}
// Property accessors
public Date getFirstDay() {
return this.firstDay;
}
public void setFirstDay(Date firstDay) {
this.firstDay = firstDay;
}
public Date getLastDay() {
return this.lastDay;
}
public void setLastDay(Date lastDay) {
this.lastDay = lastDay;
}
public String getNy() {
return this.ny;
}
public void setNy(String ny) {
this.ny = ny;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?