jinfengmoneymessage.java

来自「通过网站展示学校风采、文化、优点与特色」· Java 代码 · 共 93 行

JAVA
93
字号
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 + =
减小字号Ctrl + -
显示快捷键?