📄 jinfengmoneymessage.java
字号:
package com.mvc.dao.bean;
import java.util.Date;
/**
* JinfengMoneymessage generated by MyEclipse - Hibernate Tools
*/
public class JinfengMoneymessage implements java.io.Serializable {
// Fields
private long id;
private JinfengStudents jinfengStudents;
private double nummoney;
private Date mondate;
private double nomoney;
// Constructors
/** default constructor */
public JinfengMoneymessage() {
}
/** minimal constructor */
public JinfengMoneymessage(double nummoney, double nomoney) {
this.nummoney = nummoney;
this.nomoney = nomoney;
}
/** full constructor */
public JinfengMoneymessage(JinfengStudents jinfengStudents, double nummoney, Date mondate, double nomoney) {
this.jinfengStudents = jinfengStudents;
this.nummoney = nummoney;
this.mondate = mondate;
this.nomoney = nomoney;
}
// Property accessors
public long getId() {
return this.id;
}
public void setId(long id) {
this.id = id;
}
public JinfengStudents getJinfengStudents() {
return this.jinfengStudents;
}
public void setJinfengStudents(JinfengStudents jinfengStudents) {
this.jinfengStudents = jinfengStudents;
}
public double getNummoney() {
return this.nummoney;
}
public void setNummoney(double nummoney) {
this.nummoney = nummoney;
}
public Date getMondate() {
return this.mondate;
}
public void setMondate(Date mondate) {
this.mondate = mondate;
}
public double getNomoney() {
return this.nomoney;
}
public void setNomoney(double nomoney) {
this.nomoney = nomoney;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -