📄 docresource.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 + -