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

📄 storehousemanager.java

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

import org.apache.struts.action.ActionForm;

public class StorehouseManager extends ActionForm {
    private int shmId;
    private int compFlag;//仓管理员类型。包括:自有的和第三方的
    private int delFlag;//删除标记
    private int compUserId;//如果为自有仓管员,则该ID对应
    private int outShMagerId;
    private String realName;
    private String sex;
    private String tel;
    private String fax;
    private String email;


    public StorehouseManager() {};

    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 setCompUserId(int compUserId){
         this.compUserId=compUserId;
}
    public int getCompUserId(){
        return this.compUserId;
    }


    public void setOutShMagerId(int outShMagerId) {
        this.outShMagerId = outShMagerId;
    }

    public int getOutShMagerId() {
        return this.outShMagerId;
    }

    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 setTel(String tel) {
        this.tel = tel;
    }

    public String getTel() {
        return this.tel;
    }

    public void setFax(String fax) {
        this.fax = fax;
    }

    public String getFax() {
        return this.fax;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public String getEmail() {
        return this.email;
    }

}

⌨️ 快捷键说明

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