tblqx.java

来自「一个用struts和hibernate架构的房屋出租系统。」· Java 代码 · 共 69 行

JAVA
69
字号
package com.accp.entity;

import java.util.HashSet;
import java.util.Set;


/**
 * TblQx generated by MyEclipse - Hibernate 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 + =
减小字号Ctrl + -
显示快捷键?