📄 videoclassactionform.java
字号:
package com.singnet.video.struts.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
public class VideoClassActionForm extends ActionForm{
/** The composite primary key value. */
private java.lang.String id;
/** The value of the simple classname property. */
private java.lang.String classname;
/** The value of the simple orderid property. */
private java.lang.String orderid;
/** The value of the simple videotypeid property. */
private java.lang.String videotypeid;
/** The value of the simple ifshow property. */
private java.lang.String ifshow;
public ActionErrors validate(ActionMapping actionMapping,
HttpServletRequest httpServletRequest) {
/** @todo: finish this method, this is just the skeleton.*/
return null;
}
public void reset(ActionMapping actionMapping,
HttpServletRequest servletRequest) {
}
public java.lang.String getClassname() {
return classname;
}
public void setClassname(java.lang.String classname) {
this.classname = classname;
}
public java.lang.String getId() {
return id;
}
public void setId(java.lang.String id) {
this.id = id;
}
public java.lang.String getIfshow() {
return ifshow;
}
public void setIfshow(java.lang.String ifshow) {
this.ifshow = ifshow;
}
public java.lang.String getOrderid() {
return orderid;
}
public void setOrderid(java.lang.String orderid) {
this.orderid = orderid;
}
public java.lang.String getVideotypeid() {
return videotypeid;
}
public void setVideotypeid(java.lang.String videotypeid) {
this.videotypeid = videotypeid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -