?? radcheck.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 + -