📄 gbs_presentationform.java
字号:
package ACTION;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionMapping;
import COMMON.BaseActionForm;
/**
* GBS_PresentationForm extends BaseActionForm
* created on 11-08-2004
* @author mxx
* @version 1.0
*/
public class GBS_PresentationForm extends BaseActionForm {
// --------------------------------------------------------- Instance Variables
/** customerId property */
private String customerId = "";
/** customerName property */
private String customerName = "";
/** rfpNo property */
private String rfpNo = "";
/** lineNo property */
private String lineNo = "";
/** subsidiaryName property */
private String subsidiaryName = "";
/** lstPresentationList property */
private List lstPresentationList;
/** editflag property */
private boolean editflag = false;
// --------------------------------------------------------- Methods
/**
* Method getSubsidiaryName
* Returns the subsidiaryName.
* @return String
*/
public String getSubsidiaryName() {
return subsidiaryName;
}
/**
* Method setSubsidiaryName
* Set the subsidiaryName.
* @param subsidiaryName The subsidiaryName to set
*/
public void setSubsidiaryName(String subsidiaryName) {
this.subsidiaryName = subsidiaryName;
}
/**
* Method getCustomerName
* Returns the customerName.
* @return String
*/
public String getCustomerName() {
return customerName;
}
/**
* Method setCustomerName
* Set the customerName.
* @param customerName The customerName to set
*/
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
/**
* Method getLineNo
* Returns the customerId.
* @return String
*/
public String getLineNo() {
return lineNo;
}
/**
* Method setLineNo
* Set the customerId.
* @param customerId The customerId to set
*/
public void setLineNo(String lineNo) {
this.lineNo = lineNo;
}
/**
* Method getCustomerId
* Returns the customerId.
* @return String
*/
public String getCustomerId() {
return customerId;
}
/**
* Method setCustomerId
* Set the customerId.
* @param customerId The customerId to set
*/
public void setCustomerId(String customerId) {
this.customerId = customerId;
}
/**
* Method getRfpNo
* Returns the rfpNo.
* @return String
*/
public String getRfpNo() {
return rfpNo;
}
/**
* Method setRfpNo
* Set the rfpNo.
* @param rfpNo The rfpNo to set
*/
public void setRfpNo(String rfpNo) {
this.rfpNo = rfpNo;
}
/**
* Method setLstPresentationList
* Set the customerId.
* @param customerId The customerId to set
*/
public void setLstPresentationList(List lstPresentationList) {
this.lstPresentationList = lstPresentationList;
}
/**
* Method getLstPresentationList
* Returns the rfpNo.
* @return String
*/
public List getLstPresentationList() {
return lstPresentationList;
}
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
customerId = "";
rfpNo = "";
customerName = "";
lineNo = "";
lstPresentationList = null;
super.reset( mapping, request);
}
/**
* @return
*/
public boolean isEditflag() {
return editflag;
}
/**
* @param b
*/
public void setEditflag(boolean b) {
editflag = b;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -