📄 paymentform.java
字号:
/*
* 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-24-2008
*
* XDoclet definition:
* @struts.form name="paymentForm"
*/
public class PaymentForm extends ActionForm {
/*
* Generated fields
*/
/** p_b_id property */
private String p_b_id;
/** p_l_id property */
private String p_l_id;
/** p_i_id property */
private String p_i_id;
/** p_sett property */
private String p_sett;
/** p_note property */
private String p_note;
/*
* 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 p_b_id.
* @return String
*/
public String getP_b_id() {
return p_b_id;
}
/**
* Set the p_b_id.
* @param p_b_id The p_b_id to set
*/
public void setP_b_id(String p_b_id) {
this.p_b_id = p_b_id;
}
/**
* Returns the p_l_id.
* @return String
*/
public String getP_l_id() {
return p_l_id;
}
/**
* Set the p_l_id.
* @param p_l_id The p_l_id to set
*/
public void setP_l_id(String p_l_id) {
this.p_l_id = p_l_id;
}
/**
* Returns the p_i_id.
* @return String
*/
public String getP_i_id() {
return p_i_id;
}
/**
* Set the p_i_id.
* @param p_i_id The p_i_id to set
*/
public void setP_i_id(String p_i_id) {
this.p_i_id = p_i_id;
}
/**
* Returns the p_sett.
* @return String
*/
public String getP_sett() {
return p_sett;
}
/**
* Set the p_sett.
* @param p_sett The p_sett to set
*/
public void setP_sett(String p_sett) {
this.p_sett = p_sett;
}
/**
* Returns the p_note.
* @return String
*/
public String getP_note() {
return p_note;
}
/**
* Set the p_note.
* @param p_note The p_note to set
*/
public void setP_note(String p_note) {
this.p_note = p_note;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -