combjmobiltoperator.java

来自「beijing donggandidai shoufeifanghao」· Java 代码 · 共 77 行

JAVA
77
字号
package com.bj.admin.bean.po;



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

public class ComBjmobilToperator  implements java.io.Serializable {


    // Fields    

     private Long toperatorId;
     private String toperatorName;
     private String toperatorPwd;
     private String isAdmin;


    // Constructors

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

    
    /** full constructor */
    public ComBjmobilToperator(String toperatorName, String toperatorPwd, String isAdmin) {
        this.toperatorName = toperatorName;
        this.toperatorPwd = toperatorPwd;
        this.isAdmin = isAdmin;
    }

   
    // Property accessors

    public Long getToperatorId() {
        return this.toperatorId;
    }
    
    public void setToperatorId(Long toperatorId) {
        this.toperatorId = toperatorId;
    }

    public String getToperatorName() {
        return this.toperatorName;
    }
    
    public void setToperatorName(String toperatorName) {
        this.toperatorName = toperatorName;
    }

    public String getToperatorPwd() {
        return this.toperatorPwd;
    }
    
    public void setToperatorPwd(String toperatorPwd) {
        this.toperatorPwd = toperatorPwd;
    }

    public String getIsAdmin() {
        return this.isAdmin;
    }
    
    public void setIsAdmin(String isAdmin) {
        this.isAdmin = isAdmin;
    }
   








}

⌨️ 快捷键说明

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