radcheck.java
来自「该程序能够准确的记录互联网用户上网所用的流量」· Java 代码 · 共 112 行
JAVA
112 行
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 + =
减小字号Ctrl + -
显示快捷键?