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

📄 abstracttoperator.java

📁 还好用吧
💻 JAVA
字号:
package po;



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

public abstract class AbstractToperator  implements java.io.Serializable {


    // Fields    

     private Long operatorId;
     private String operatorName;
     private String operatorPwd;
     private Long isAdmin;


    // Constructors

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

	/** minimal constructor */
    public AbstractToperator(Long operatorId) {
        this.operatorId = operatorId;
    }
    
    /** full constructor */
    public AbstractToperator(Long operatorId, String operatorName, String operatorPwd, Long isAdmin) {
        this.operatorId = operatorId;
        this.operatorName = operatorName;
        this.operatorPwd = operatorPwd;
        this.isAdmin = isAdmin;
    }

   
    // Property accessors

    public Long getOperatorId() {
        return this.operatorId;
    }
    
    public void setOperatorId(Long operatorId) {
        this.operatorId = operatorId;
    }

    public String getOperatorName() {
        return this.operatorName;
    }
    
    public void setOperatorName(String operatorName) {
        this.operatorName = operatorName;
    }

    public String getOperatorPwd() {
        return this.operatorPwd;
    }
    
    public void setOperatorPwd(String operatorPwd) {
        this.operatorPwd = operatorPwd;
    }

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








}

⌨️ 快捷键说明

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