📄 forumlabelbuild.java
字号:
/*
* Created on 2007-5-21
* Last modified on 2007-5-21
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.controller.form.build;
import javax.servlet.http.HttpServletRequest;
import com.yeqiangwei.club.controller.form.ForumLabelForm;
import com.yeqiangwei.util.ParamUtils;
public class ForumLabelBuild {
private HttpServletRequest request;
public ForumLabelBuild(HttpServletRequest request){
this.request = request;
}
public ForumLabelForm build(){
ForumLabelForm form = new ForumLabelForm();
form.setForumId(ParamUtils.getIntParameter(request,"forumId_"));
form.setLabelId(ParamUtils.getIntParameter(request,"labelId"));
form.setLabelName(ParamUtils.getStringParameter(request,"labelName"));
form.setOrderList(ParamUtils.getIntParameter(request,"orderList"));
return form;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -