📄 sellsform.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="sellsForm"
*/
public class SellsForm extends ActionForm {
/*
* Generated fields
*/
/** s_w_id property */
private String s_w_id;
/** s_quantity property */
private String s_quantity;
/** s_p_id property */
private String s_p_id;
/** s_u_id property */
private String s_u_id;
/** s_l_id property */
private String s_l_id;
/** s_i_id property */
private String s_i_id;
/** s_note property */
private String s_note;
/** s_ver property */
private String s_ver;
/** s_price property */
private Double s_price;
/** s_b_id property */
private String s_b_id;
/** s_amount property */
private Double s_amount;
/** s_actual property */
private Double s_actual;
/** s_no property */
private String s_no;
/*
* 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 s_w_id.
* @return String
*/
public String getS_w_id() {
return s_w_id;
}
/**
* Set the s_w_id.
* @param s_w_id The s_w_id to set
*/
public void setS_w_id(String s_w_id) {
this.s_w_id = s_w_id;
}
/**
* Returns the s_quantity.
* @return String
*/
public String getS_quantity() {
return s_quantity;
}
/**
* Set the s_quantity.
* @param s_quantity The s_quantity to set
*/
public void setS_quantity(String s_quantity) {
this.s_quantity = s_quantity;
}
/**
* Returns the s_p_id.
* @return String
*/
public String getS_p_id() {
return s_p_id;
}
/**
* Set the s_p_id.
* @param s_p_id The s_p_id to set
*/
public void setS_p_id(String s_p_id) {
this.s_p_id = s_p_id;
}
/**
* Returns the s_u_id.
* @return String
*/
public String getS_u_id() {
return s_u_id;
}
/**
* Set the s_u_id.
* @param s_u_id The s_u_id to set
*/
public void setS_u_id(String s_u_id) {
this.s_u_id = s_u_id;
}
/**
* Returns the s_l_id.
* @return String
*/
public String getS_l_id() {
return s_l_id;
}
/**
* Set the s_l_id.
* @param s_l_id The s_l_id to set
*/
public void setS_l_id(String s_l_id) {
this.s_l_id = s_l_id;
}
/**
* Returns the s_i_id.
* @return String
*/
public String getS_i_id() {
return s_i_id;
}
/**
* Set the s_i_id.
* @param s_i_id The s_i_id to set
*/
public void setS_i_id(String s_i_id) {
this.s_i_id = s_i_id;
}
/**
* Returns the s_note.
* @return String
*/
public String getS_note() {
return s_note;
}
/**
* Set the s_note.
* @param s_note The s_note to set
*/
public void setS_note(String s_note) {
this.s_note = s_note;
}
/**
* Returns the s_ver.
* @return String
*/
public String getS_ver() {
return s_ver;
}
/**
* Set the s_ver.
* @param s_ver The s_ver to set
*/
public void setS_ver(String s_ver) {
this.s_ver = s_ver;
}
/**
* Returns the s_price.
* @return Double
*/
public Double getS_price() {
return s_price;
}
/**
* Set the s_price.
* @param s_price The s_price to set
*/
public void setS_price(Double s_price) {
this.s_price = s_price;
}
/**
* Returns the s_b_id.
* @return String
*/
public String getS_b_id() {
return s_b_id;
}
/**
* Set the s_b_id.
* @param s_b_id The s_b_id to set
*/
public void setS_b_id(String s_b_id) {
this.s_b_id = s_b_id;
}
/**
* Returns the s_amount.
* @return Double
*/
public Double getS_amount() {
return s_amount;
}
/**
* Set the s_amount.
* @param s_amount The s_amount to set
*/
public void setS_amount(Double s_amount) {
this.s_amount = s_amount;
}
/**
* Returns the s_actual.
* @return Double
*/
public Double getS_actual() {
return s_actual;
}
/**
* Set the s_actual.
* @param s_actual The s_actual to set
*/
public void setS_actual(Double s_actual) {
this.s_actual = s_actual;
}
/**
* Returns the s_no.
* @return String
*/
public String getS_no() {
return s_no;
}
/**
* Set the s_no.
* @param s_no The s_no to set
*/
public void setS_no(String s_no) {
this.s_no = s_no;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -