product.java

来自「该程序能够准确的记录互联网用户上网所用的流量」· Java 代码 · 共 152 行

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