storehousemanagercompview.java

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

JAVA
76
字号
package com.bean;

import org.apache.struts.action.ActionForm;

public class StorehouseManagerCompView extends ActionForm{
    private int shmId;
    private int compFlag;
    private int delFlag;
    private String realName;
    private String sex;
    private int compUserId;
    private String department;
    private String position;

     public StorehouseManagerCompView(){};

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

    public void setCompFlag(int compFlag){
         this.compFlag=compFlag;
}
    public int getCompFlag(){
        return this.compFlag;
    }

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

    public void setRealName(String realName){
         this.realName=realName;
}
    public String getRealName(){
        return this.realName;
    }

    public void setSex(String sex){
         this.sex=sex;
}
    public String getSex(){
        return this.sex;
    }

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

    public void setDepartment(String department){
         this.department=department;
}
    public String getDepartment(){
        return this.department;
    }

    public void setPosition(String position){
         this.position=position;
}
    public String getPosition(){
        System.out.println();
        return this.position;

    }

}

⌨️ 快捷键说明

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