⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 businessmonth.java

📁 上网计费系统,适用网吧或者自己学习用用JAVA写成
💻 JAVA
字号:
package com.briup.dao.bean;

import java.util.Date;


/**
 * Businessmonth generated by MyEclipse - Hibernate Tools
 */

public class Businessmonth  implements java.io.Serializable {


    // Fields    

     private Long id;
     private String productName;
     private Date ondate;
     private Double sumfee;


    // Constructors

    /** default constructor */
    public Businessmonth() {
    }

    
    /** full constructor */
    public Businessmonth(String productName, Date ondate, Double sumfee) {
        this.productName = productName;
        this.ondate = ondate;
        this.sumfee = sumfee;
    }

   
    // Property accessors

    public Long getId() {
        return this.id;
    }
    
    public void setId(Long id) {
        this.id = id;
    }

    public String getProductName() {
        return this.productName;
    }
    
    public void setProductName(String productName) {
        this.productName = productName;
    }

    public Date getOndate() {
        return this.ondate;
    }
    
    public void setOndate(Date ondate) {
        this.ondate = ondate;
    }

    public Double getSumfee() {
        return this.sumfee;
    }
    
    public void setSumfee(Double sumfee) {
        this.sumfee = sumfee;
    }
   








}

⌨️ 快捷键说明

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