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

📄 product.java

📁 该程序能够准确的记录互联网用户上网所用的流量
💻 JAVA
字号:
package com.briup.common.dao.pojo;
// default package



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

public class Product  implements java.io.Serializable {


    // Fields    

     private Long id;
     private ProductType productType;
     private String name;
     private Double baseFee;
     private Double rateFee;
     private Long dailyLimit;
     private Long monthLimit;
     private Long upLimit;
     private Long downLimit;
     private Double sfee;
     private String remark;


    // Constructors

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

	/** minimal constructor */
    public Product(String name) {
        this.name = name;
    }
    
    /** full constructor */
    public Product(ProductType productType, String name, Double baseFee, Double rateFee, Long dailyLimit, Long monthLimit, Long upLimit, Long downLimit, Double sfee, String remark) {
        this.productType = productType;
        this.name = name;
        this.baseFee = baseFee;
        this.rateFee = rateFee;
        this.dailyLimit = dailyLimit;
        this.monthLimit = monthLimit;
        this.upLimit = upLimit;
        this.downLimit = downLimit;
        this.sfee = sfee;
        this.remark = remark;
    }

   
    // Property accessors

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

    public ProductType getProductType() {
        return this.productType;
    }
    
    public void setProductType(ProductType productType) {
        this.productType = productType;
    }

    public String getName() {
        return this.name;
    }
    
    public void setName(String name) {
        this.name = name;
    }

    public Double getBaseFee() {
        return this.baseFee;
    }
    
    public void setBaseFee(Double baseFee) {
        this.baseFee = baseFee;
    }

    public Double getRateFee() {
        return this.rateFee;
    }
    
    public void setRateFee(Double rateFee) {
        this.rateFee = rateFee;
    }

    public Long getDailyLimit() {
        return this.dailyLimit;
    }
    
    public void setDailyLimit(Long dailyLimit) {
        this.dailyLimit = dailyLimit;
    }

    public Long getMonthLimit() {
        return this.monthLimit;
    }
    
    public void setMonthLimit(Long monthLimit) {
        this.monthLimit = monthLimit;
    }

    public Long getUpLimit() {
        return this.upLimit;
    }
    
    public void setUpLimit(Long upLimit) {
        this.upLimit = upLimit;
    }

    public Long getDownLimit() {
        return this.downLimit;
    }
    
    public void setDownLimit(Long downLimit) {
        this.downLimit = downLimit;
    }

    public Double getSfee() {
        return this.sfee;
    }
    
    public void setSfee(Double sfee) {
        this.sfee = sfee;
    }

    public String getRemark() {
        return this.remark;
    }
    
    public void setRemark(String remark) {
        this.remark = remark;
    }
   








}

⌨️ 快捷键说明

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