shortinfoform.java
来自「企业快信的作用是帮助企业解决企业内部、企业与外部沟通难、信息不能及时传播等问题。」· Java 代码 · 共 36 行
JAVA
36 行
package com.wgh.actionForm;
import org.apache.struts.action.ActionForm;
public class ShortInfoForm extends ActionForm{
private int ID; //ID号
private int typeID; //类别ID
private String typeName; //类别名称
private String content; //内容
public int getID() {
return ID;
}
public void setID(int ID) {
this.ID = ID;
}
public int getTypeID() {
return typeID;
}
public void setTypeID(int typeID) {
this.typeID = typeID;
}
public String getTypeName() {
return typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?