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

📄 wfmenu.java

📁 公司自己开发的工作流引擎
💻 JAVA
字号:
package cn.com.iaspec.workflow.vo.workflow;

import java.io.*;

/**
 * <p>Title: </p>
 *
 * <p>Description: 深圳市劳动仲裁信息管理系统</p>
 *
 * <p>Copyright: Copyright (c) 2005</p>
 *
 * <p>Company: 永泰软件工程有限公司</p>
 *
 * @author syj
 * @version 1.0
 */
public class WfMenu
    implements Serializable{
  private String func_id; //菜单的编号
  private String func_name; //菜单名称
  private String up_func_id; //上级菜单的名称
  private String fun_desc; //菜单描述
  private String page_name; //菜单连接名称
  private int fireflag; //功能触发形式标记0:菜单,1:工作流
  private int func_order; //排序编码
  private String open_type; //打开类型
  private int window_width; //打开的宽度
  private int window_height; //打开的高度
  private int func_level; //菜单的层次
  private String func_image; //功能所对应图标

  private long activityid;
  public String getFunc_id(){
    return func_id;
  }

  public String getFunc_name(){
    return func_name;
  }

  public String getUp_func_id(){
    return up_func_id;
  }

  public String getFun_desc(){
    return fun_desc;
  }

  public String getPage_name(){
    return page_name;
  }

  public int getFireflag(){
    return fireflag;
  }

  public int getFunc_order(){
    return func_order;
  }

  public String getOpen_type(){
    return open_type;
  }

  public int getWindow_width(){
    return window_width;
  }

  public int getWindow_height(){
    return window_height;
  }

  public int getFunc_level(){
    return func_level;
  }

  public String getFunc_image(){
    return func_image;
  }

  public long getActivityid(){
    return activityid;
  }

  public void setFunc_id(String func_id){
    this.func_id=func_id;
  }

  public void setFunc_name(String func_name){
    this.func_name=func_name;
  }

  public void setUp_func_id(String up_func_id){
    this.up_func_id=up_func_id;
  }

  public void setFun_desc(String fun_desc){
    this.fun_desc=fun_desc;
  }

  public void setPage_name(String page_name){
    this.page_name=page_name;
  }

  public void setFireflag(int fireflag){
    this.fireflag=fireflag;
  }

  public void setFunc_order(int func_order){
    this.func_order=func_order;
  }

  public void setOpen_type(String open_type){
    this.open_type=open_type;
  }

  public void setWindow_width(int window_width){
    this.window_width=window_width;
  }

  public void setWindow_height(int window_height){
    this.window_height=window_height;
  }

  public void setFunc_level(int func_level){
    this.func_level=func_level;
  }

  public void setFunc_image(String func_image){
    this.func_image=func_image;
  }

  public void setActivityid(long activityid){
    this.activityid=activityid;
  }

}

⌨️ 快捷键说明

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