acounttable.java

来自「hibernate应用测试,初学hibernate 的会员可以看看.」· Java 代码 · 共 90 行

JAVA
90
字号
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 + =
减小字号Ctrl + -
显示快捷键?