abstracttuser.java

来自「移动通信的一个项目。 里面是一个模块 用到了 SPRING HIBERNATE」· Java 代码 · 共 87 行

JAVA
87
字号
package po;



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

public abstract class AbstractTuser  implements java.io.Serializable {


    // Fields    

     private Long userId;
     private Tmobiles tmobiles;
     private Tcustomer tcustomer;
     private String roamingStatus;
     private String comLevel;


    // Constructors

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

    
    /** full constructor */
    public AbstractTuser(Tmobiles tmobiles, Tcustomer tcustomer, String roamingStatus, String comLevel) {
        this.tmobiles = tmobiles;
        this.tcustomer = tcustomer;
        this.roamingStatus = roamingStatus;
        this.comLevel = comLevel;
    }

   
    // Property accessors

    public Long getUserId() {
        return this.userId;
    }
    
    public void setUserId(Long userId) {
        this.userId = userId;
    }

    public Tmobiles getTmobiles() {
        return this.tmobiles;
    }
    
    public void setTmobiles(Tmobiles tmobiles) {
        this.tmobiles = tmobiles;
    }

    public Tcustomer getTcustomer() {
        return this.tcustomer;
    }
    
    public void setTcustomer(Tcustomer tcustomer) {
        this.tcustomer = tcustomer;
    }

    public String getRoamingStatus() {
        return this.roamingStatus;
    }
    
    public void setRoamingStatus(String roamingStatus) {
        this.roamingStatus = roamingStatus;
    }

    public String getComLevel() {
        return this.comLevel;
    }
    
    public void setComLevel(String comLevel) {
        this.comLevel = comLevel;
    }
   








}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?