⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gbs_requestform.java

📁 对日软件外包 为东芝做的一个全球商业管理系统
💻 JAVA
字号:
/** 
 * method GBS_UsermasterForm.java
 * created on 07-30-2004
 * 
 * @author   GXK
 * @version  1.0
 */

package ACTION;

import java.util.ArrayList;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionMapping;

import COMMON.BaseActionForm;


public class GBS_RequestForm extends BaseActionForm {

	// --------------------------------------------------------- Instance Variables

	private String customerCategory = "";
	private String customerID = "";
	private String customerName = "";
	private String rfpNo = "";
	private String repRcvDate = "";
	private String dueDate = "";
	private String infoDueDate = "";
	private String countries = "";
	private String originatingSubsidiary = "";
	private String participatingSubsidiaries = "";
	private String participatingsubsidiaryCodes = "";
	private String attachDate = "";
	private String infoCountry = "";
	private String infoHardCategory = "";
	private String infoDelivery = "";
	private String quantity = "";
	private String remarks = "";
	private String comment = "";
	private String fileDeleteFlg = "off";
	private boolean rowUpdateFlg = false;
	private boolean RecordDeleteFlg = false;
	private String countrycode = "";
	private ArrayList selectCountryList = new ArrayList();
	private String oldMethod = "";
	/** editflag property */
	private boolean editflag = false;

	private ArrayList countryList = new ArrayList();

	public ArrayList getCountryList() {
		return countryList;
	}

	public void setCountryList(ArrayList countryList) {
		this.countryList = countryList;
	}

	private ArrayList rfpAttachList = new ArrayList();

	public ArrayList getRfpAttachList() {
		return rfpAttachList;
	}

	public void setRfpAttachList(ArrayList rfpAttachList) {
		this.rfpAttachList = rfpAttachList;
	}

	private String[] country = null;
	public String[] getCountry() {
		return country;
	}

	public void setCountry(String[] country) {
		this.country = country;
	}
	/**
	 * Method reset
	 * @param mapping
	 * @param request
	 */
	public void reset(ActionMapping mapping, HttpServletRequest request) {
		customerCategory = "";
		customerID = "";
		customerName = "";
		rfpNo = "";
		repRcvDate = "";
		dueDate = "";
		infoDueDate = "";
		countries = "";
		originatingSubsidiary = "";
		participatingSubsidiaries = "";
		participatingsubsidiaryCodes = "";
		attachDate = "";
		infoCountry = "";
		infoHardCategory = "";
		infoDelivery = "";
		quantity = "";
		remarks = "";
		comment = "";
		//lineNo = "";
		//seqNo = "";
		fileDeleteFlg = "off";
		rowUpdateFlg = false;
		RecordDeleteFlg = false;
		countrycode = "";
		selectCountryList = new ArrayList();
		countryList = new ArrayList();
		rfpAttachList = new ArrayList();
		country = null;
		oldMethod = "";
		super.reset(mapping, request);
	}

	public String getCustomerCategory() {
		return customerCategory;
	}

	public void setCustomerCategory(String customerCategory) {
		this.customerCategory = customerCategory;
	}

	public String getDueDate() {
		return dueDate;
	}

	public void setDueDate(String dueDate) {
		this.dueDate = dueDate;
	}

	public String getOriginatingSubsidiary() {
		return originatingSubsidiary;
	}

	public void setOriginatingSubsidiary(String originatingSubsidiary) {
		this.originatingSubsidiary = originatingSubsidiary;
	}

	public String getCustomerID() {
		return customerID;
	}

	public void setCustomerID(String customerID) {
		this.customerID = customerID;
	}

	public String getCustomerName() {
		return customerName;
	}

	public void setCustomerName(String customerName) {
		this.customerName = customerName;
	}

	public String getRfpNo() {
		return rfpNo;
	}

	public void setRfpNo(String rfpNo) {
		this.rfpNo = rfpNo;
	}

	public String getRepRcvDate() {
		return repRcvDate;
	}

	public void setRepRcvDate(String repRcvDate) {
		this.repRcvDate = repRcvDate;
	}

	public String getInfoDueDate() {
		return infoDueDate;
	}

	public void setInfoDueDate(String infoDueDate) {
		this.infoDueDate = infoDueDate;
	}

	public String getCountries() {
		return countries;
	}

	public void setCountries(String countries) {
		this.countries = countries;
	}

	public String getParticipatingSubsidiaries() {
		return participatingSubsidiaries;
	}

	public void setParticipatingSubsidiaries(String participatingSubsidiaries) {
		this.participatingSubsidiaries = participatingSubsidiaries;
	}

	public String getParticipatingsubsidiaryCodes() {
		return participatingsubsidiaryCodes;
	}

	public void setParticipatingsubsidiaryCodes(String participatingsubsidiaryCodes) {
		this.participatingsubsidiaryCodes = participatingsubsidiaryCodes;
	}

	public String getAttachDate() {
		return attachDate;
	}

	public void setAttachDate(String attachDate) {
		this.attachDate = attachDate;
	}

	public String getInfoCountry() {
		return infoCountry;
	}

	public void setInfoCountry(String infoCountry) {
		this.infoCountry = infoCountry;
	}

	public String getInfoHardCategory() {
		return infoHardCategory;
	}

	public void setInfoHardCategory(String infoHardCategory) {
		this.infoHardCategory = infoHardCategory;
	}

	public String getInfoDelivery() {
		return infoDelivery;
	}

	public void setInfoDelivery(String infoDelivery) {
		this.infoDelivery = infoDelivery;
	}

	public String getQuantity() {
		return quantity;
	}

	public void setQuantity(String quantity) {
		this.quantity = quantity;
	}

	public String getRemarks() {
		return remarks;
	}

	public void setRemarks(String remarks) {
		this.remarks = remarks;
	}

	public String getComment() {
		return comment;
	}

	public void setComment(String comment) {
		this.comment = comment;
	}

	/**
	 * @return
	 */
	public String getFileDeleteFlg() {
		return fileDeleteFlg;
	}

	/**
	 * @return
	 */
	public boolean isRecordDeleteFlg() {
		return RecordDeleteFlg;
	}

	/**
	 * @return
	 */
	public boolean isRowUpdateFlg() {
		return rowUpdateFlg;
	}

	/**
	 * @param string
	 */
	public void setFileDeleteFlg(String fileDeleteFlg) {
		this.fileDeleteFlg = fileDeleteFlg;
	}

	/**
	 * @param b
	 */
	public void setRecordDeleteFlg(boolean RecordDeleteFlg) {
		this.RecordDeleteFlg = RecordDeleteFlg;
	}

	/**
	 * @param b
	 */
	public void setRowUpdateFlg(boolean rowUpdateFlg) {
		this.rowUpdateFlg = rowUpdateFlg;
	}

	/**
	 * @return
	 */
	public ArrayList getSelectCountryList() {
		return selectCountryList;
	}

	/**
	 * @param list
	 */
	public void setSelectCountryList(ArrayList selectCountryList) {
		this.selectCountryList = selectCountryList;
	}

	/**
	 * @return
	 */
	public String getCountrycode() {
		return countrycode;
	}

	/**
	 * @param string
	 */
	public void setCountrycode(String countrycode) {
		this.countrycode = countrycode;
	}


	/**
	 * @return
	 */
	public String getOldMethod() {
		return oldMethod;
	}

	/**
	 * @param string
	 */
	public void setOldMethod(String string) {
		oldMethod = string;
	}

	/**
	 * @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 + -