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

📄 acounttable.java

📁 hibernate应用测试,初学hibernate 的会员可以看看.
💻 JAVA
字号:
package com.bean;

import org.apache.struts.action.ActionForm;

public class AcountTable extends ActionForm{
    private int acountId;
    private String pwd;
    private int clientId;
    private int compUserId;
    private int openFlag;
    private java.sql.Date openDate;
    private int shmId;
    private int firstLogFlag;
    private int delFlag;
    private String accountName;

     public AcountTable(){};

    public void setAcountId(int acountId){
         this.acountId=acountId;
}
    public int getAcountId(){
        return this.acountId;
    }

    public void setPwd(String pwd){
         this.pwd=pwd;
}
    public String getPwd(){
        return this.pwd;
    }

    public void setClientId(int clientId){
         this.clientId=clientId;
}
    public int getClientId(){
        return this.clientId;
    }

    public void setCompUserId(int compUserId){
         this.compUserId=compUserId;
}
    public int getCompUserId(){
        return this.compUserId;
    }

    public void setOpenFlag(int openFlag){
         this.openFlag=openFlag;
}
    public int getOpenFlag(){
        return this.openFlag;
    }

    public void setOpenDate(java.sql.Date openDate){
         this.openDate=openDate;
}
    public java.sql.Date getOpenDate(){
        return this.openDate;
    }

    public void setShmId(int shmId){
         this.shmId=shmId;
}
    public int getShmId(){
        return this.shmId;
    }

    public void setFirstLogFlag(int firstLogFlag){
         this.firstLogFlag=firstLogFlag;
}
    public int getFirstLogFlag(){
        return this.firstLogFlag;
    }

    public void setDelFlag(int delFlag){
         this.delFlag=delFlag;
}
    public int getDelFlag(){
        return this.delFlag;
    }

    public void setAccountName(String accountName){
         this.accountName=accountName;
}
    public String getAccountName(){
        return this.accountName;
    }

}

⌨️ 快捷键说明

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