📄 productform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.jn0801.intergral.product;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
* MyEclipse Struts Creation date: 08-27-2008
*
* XDoclet definition:
*
* @struts.form name="productForm"
*/
public class ProductForm extends ActionForm {
private static final long serialVersionUID = 2069836845287166738L;
private String keyword;
private String task;
private String productname;
private String productintroduce;
private String productimage;
private Long point;
private Long productid;
private Long typeid;
private String productor;
private Long productstorage;
private String currentPage;
public String getCurrentPage() {
return currentPage;
}
public void setCurrentPage(String currentPage) {
this.currentPage = currentPage;
}
/**
* Method validate
*
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Method reset
*
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
/**
* @return the keyword
*/
public String getKeyword() {
return keyword;
}
/**
* @param keyword
* the keyword to set
*/
public void setKeyword(String keyword) {
this.keyword = keyword;
}
/**
* @return the point
*/
public Long getPoint() {
return point;
}
/**
* @param point
* the point to set
*/
public void setPoint(Long point) {
this.point = point;
}
/**
* @return the productid
*/
public Long getProductid() {
return productid;
}
/**
* @param productid
* the productid to set
*/
public void setProductid(Long productid) {
this.productid = productid;
}
/**
* @return the productimage
*/
public String getProductimage() {
return productimage;
}
/**
* @param productimage
* the productimage to set
*/
public void setProductimage(String productimage) {
this.productimage = productimage;
}
/**
* @return the productintroduce
*/
public String getProductintroduce() {
return productintroduce;
}
/**
* @param productintroduce
* the productintroduce to set
*/
public void setProductintroduce(String productintroduce) {
this.productintroduce = productintroduce;
}
/**
* @return the productname
*/
public String getProductname() {
return productname;
}
/**
* @param productname
* the productname to set
*/
public void setProductname(String productname) {
this.productname = productname;
}
/**
* @return the productor
*/
public String getProductor() {
return productor;
}
/**
* @param productor
* the productor to set
*/
public void setProductor(String productor) {
this.productor = productor;
}
/**
* @return the productstorage
*/
public Long getProductstorage() {
return productstorage;
}
/**
* @param productstorage
* the productstorage to set
*/
public void setProductstorage(Long productstorage) {
this.productstorage = productstorage;
}
/**
* @return the task
*/
public String getTask() {
return task;
}
/**
* @param task
* the task to set
*/
public void setTask(String task) {
this.task = task;
}
/**
* @return the typeid
*/
public Long getTypeid() {
return typeid;
}
/**
* @param typeid
* the typeid to set
*/
public void setTypeid(Long typeid) {
this.typeid = typeid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -