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

📄 docresource.java

📁 这是一个工作流管理的后端EJB实现
💻 JAVA
字号:
package com.coshare.joyteam.projectMgr.dto;

public interface DocResource {
	/**
	 * 文档资源
	 */
	public static final int RESTYPE_DOC = 10;
	/**
	 * 输入资源
	 */
	public static final int IOTYPE_INPUT = 10;
	/**
	 * 输出资源
	 */
	public static final int IOTYPE_OUTPUT = 20;

	public void setResId(String resId);
	public String getResId();
	public int getResType();
	public void setResType(int type);
	public int getInputorOutput();
	public void setInputorOutput(int inputorOutpur);
	public String getTheDescription();
	public void setTheDescription(String theDescription);
}

⌨️ 快捷键说明

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