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

📄 radcheck.java

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



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

public class Radcheck  implements java.io.Serializable {


    // Fields    

     private Long id;
     private Product product;
     private User user;
     private String username;
     private String attribute;
     private String op;
     private String value;


    // Constructors

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

	/** minimal constructor */
    public Radcheck(String username, String op) {
        this.username = username;
        this.op = op;
    }
    
    /** full constructor */
    public Radcheck(Product product, User user, String username, String attribute, String op, String value) {
        this.product = product;
        this.user = user;
        this.username = username;
        this.attribute = attribute;
        this.op = op;
        this.value = value;
    }

   
    // Property accessors

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

    public Product getProduct() {
        return this.product;
    }
    
    public void setProduct(Product product) {
        this.product = product;
    }

    public User getUser() {
        return this.user;
    }
    
    public void setUser(User user) {
        this.user = user;
    }

    public String getUsername() {
        return this.username;
    }
    
    public void setUsername(String username) {
        this.username = username;
    }

    public String getAttribute() {
        return this.attribute;
    }
    
    public void setAttribute(String attribute) {
        this.attribute = attribute;
    }

    public String getOp() {
        return this.op;
    }
    
    public void setOp(String op) {
        this.op = op;
    }

    public String getValue() {
        return this.value;
    }
    
    public void setValue(String value) {
        this.value = value;
    }
   








}

⌨️ 快捷键说明

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