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

📄 orgunit.java

📁 java实现的可配置的工作流引擎,采用jsp+javabean实现
💻 JAVA
字号:
package com.hongsoft.res.pojo;


/**
 * 组织资源对象
 */
public class OrgUnit
{

   private long id;
  /**
    * 组织名
    */
   private String name = null;   

   /**
    * 组织描述
    */
   private String description = null;
   private int is_deleted=0;

   public OrgUnit()
   {
   }
   public void setId(long id){
     this.id=id;
   }

   public long getId(){
     return this.id;
   }

   /**
    * Access method for the name property.
    *
    * @return   the current value of the name property
    */
   public String getName()
   {
      return name;
   }

   /**
    * Sets the value of the name property.
    *
    * @param aName the new value of the name property
    */
   public void setName(String aName)
   {
      name = aName;
   }  

   /**
    * Access method for the description property.
    *
    * @return   the current value of the description property
    */
   public String getDescription()
   {
      return description;
   }

   /**
    * Sets the value of the description property.
    *
    * @param aDescription the new value of the description property
    */
   public void setDescription(String aDescription)
   {
      description = aDescription;
   }
  public int getIs_deleted() {
    return is_deleted;
  }
  public void setIs_deleted(int is_deleted) {
    this.is_deleted = is_deleted;
  }
}

⌨️ 快捷键说明

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