appropriationform.java
来自「医药供应链管理系统」· Java 代码 · 共 86 行
JAVA
86 行
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.captainli.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;
/**
* MyEclipse Struts
* Creation date: 12-26-2008
*
* XDoclet definition:
* @struts.form name="appropriationForm"
*/
public class AppropriationForm extends ActionForm {
/*
* Generated fields
*/
/** r_w_id property */
private int r_w_id;
/** r_quantity property */
private int r_quantity;
/*
* Generated Methods
*/
/**
* 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
}
/**
* Returns the r_w_id.
* @return int
*/
public int getR_w_id() {
return r_w_id;
}
/**
* Set the r_w_id.
* @param r_w_id The r_w_id to set
*/
public void setR_w_id(int r_w_id) {
this.r_w_id = r_w_id;
}
/**
* Returns the r_quantity.
* @return int
*/
public int getR_quantity() {
return r_quantity;
}
/**
* Set the r_quantity.
* @param r_quantity The r_quantity to set
*/
public void setR_quantity(int r_quantity) {
this.r_quantity = r_quantity;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?