?? tblqx.java
字號:
package com.ajax.dao;
import java.util.HashSet;
import java.util.Set;
/**
* TblQx entity.
*
* @author MyEclipse Persistence Tools
*/
public class TblQx implements java.io.Serializable {
// Fields
private Integer qxid;
private String qx;
private Set tblJds = new HashSet(0);
// Constructors
/** default constructor */
public TblQx() {
}
/** full constructor */
public TblQx(String qx, Set tblJds) {
this.qx = qx;
this.tblJds = tblJds;
}
// Property accessors
public Integer getQxid() {
return this.qxid;
}
public void setQxid(Integer qxid) {
this.qxid = qxid;
}
public String getQx() {
return this.qx;
}
public void setQx(String qx) {
this.qx = qx;
}
public Set getTblJds() {
return this.tblJds;
}
public void setTblJds(Set tblJds) {
this.tblJds = tblJds;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -