⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 user.java

📁 是我自己在做java训练的时候做的一个小项目
💻 JAVA
字号:
package com.magic.mobile.vo;
// default package



/**
 * User entity. @author MyEclipse Persistence Tools
 */

public class User  implements java.io.Serializable {


    // Fields    

     private Long userId;
     private Account taccount;
     private Mobile tmobile;
     private Customer tcustomer;
     private String roamingStatus;
     private String comLevel;


    // Constructors

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

    
    /** full constructor */
    public User(Account taccount, Mobile tmobile, Customer tcustomer, String roamingStatus, String comLevel) {
        this.taccount = taccount;
        this.tmobile = tmobile;
        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 Account getTaccount() {
        return this.taccount;
    }
    
    public void setTaccount(Account taccount) {
        this.taccount = taccount;
    }

    public Mobile getTmobile() {
        return this.tmobile;
    }
    
    public void setTmobile(Mobile tmobile) {
        this.tmobile = tmobile;
    }

    public Customer getTcustomer() {
        return this.tcustomer;
    }
    
    public void setTcustomer(Customer 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -