programform.java~23~
来自「采用web2.0技术,采用动态标签,sql语句全部存储在数据库里面.开发速度快.」· JAVA~23~ 代码 · 共 68 行
JAVA~23~
68 行
package com.sztheater.biz.Program;
/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2006</p>
* <p>Company: </p>
* @author not attributable up-and-up
* @version 1.0
*/
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import org.apache.struts.action.*;
public class ProgramForm extends ActionForm {
private String ProgramID = null;
private String ContentName = null;
private String ProgTypeName = null;
private String TypeDescription = null;
private String Director = null;
private String DateCreated = null;
private String Post = null;
private String MainRoles = null;
public ProgramForm() {
}
public String getProgramID()
{
return this.ProgramID;
}
public String getContentName()
{
return this.ContentName;
}
public String getProgTypeName()
{
return this.ProgTypeName;
}
public String getTypeDescription()
{
return this.TypeDescription;
}
public String getDirector()
{
return this.Director;
}
public String getDateCreated()
{
return this.DateCreated;
}
public String getPost()
{
return this.Post;
}
public String getMainRoles()
{
return this.MainRoles;
}
public ActionErrors validate(ActionMapping arg0, HttpServletRequest arg1) {
ActionErrors errors = new ActionErrors();
return errors;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?