radreply.java

来自「上网计费系统,适用网吧或者自己学习用用JAVA写成」· Java 代码 · 共 92 行

JAVA
92
字号
package com.briup.dao.bean;



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

public class Radreply  implements java.io.Serializable {


    // Fields    

     private Long id;
     private String username;
     private String attribute;
     private String op;
     private String value;


    // Constructors

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

	/** minimal constructor */
    public Radreply(String username, String op) {
        this.username = username;
        this.op = op;
    }
    
    /** full constructor */
    public Radreply(String username, String attribute, String op, String value) {
        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 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 + =
减小字号Ctrl + -
显示快捷键?