videoclassactionform.java
来自「本程序是作者开发的一个宽带娱乐系统的一个模块.」· Java 代码 · 共 78 行
JAVA
78 行
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 + =
减小字号Ctrl + -
显示快捷键?