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

📄 suborderform.java

📁 本系统为符合订单管理 精确使用了账号分层用户管理 可进行主订单 次订单的增加 删除功能 实现了全密浏览用品的功能!
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.hz.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: 05-02-2008
 * 
 * XDoclet definition:
 * @struts.form name="subOrderForm"
 */
public class SubOrderForm extends ActionForm {
	/*
	 * Generated fields
	 */
	private int subId;
	
	
	/** subName property */
	private String subName;

	/** subCount property */
	private int subCount;

	/** subNumber property */
	private int subNumber;

	/** subDetail property */
	private String subDetail;

	/** orderId property */
	private int orderId;

	/** orderTime property */
	private String orderTime;

	
	private String code;
	
	
	/*
	 * Generated Methods
	 */

	public String getCode() {
		return code;
	}

	public void setCode(String code) {
		this.code = code;
	}

	/** 
	 * 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 subName.
	 * @return String
	 */
	public String getSubName() {
		return subName;
	}

	/** 
	 * Set the subName.
	 * @param subName The subName to set
	 */
	public void setSubName(String subName) {
		this.subName = subName;
	}

	/** 
	 * Returns the subCount.
	 * @return int
	 */
	public int getSubCount() {
		return subCount;
	}

	/** 
	 * Set the subCount.
	 * @param subCount The subCount to set
	 */
	public void setSubCount(int subCount) {
		this.subCount = subCount;
	}

	/** 
	 * Returns the subNumber.
	 * @return int
	 */
	public int getSubNumber() {
		return subNumber;
	}

	/** 
	 * Set the subNumber.
	 * @param subNumber The subNumber to set
	 */
	public void setSubNumber(int subNumber) {
		this.subNumber = subNumber;
	}

	/** 
	 * Returns the subDetail.
	 * @return String
	 */
	public String getSubDetail() {
		return subDetail;
	}

	/** 
	 * Set the subDetail.
	 * @param subDetail The subDetail to set
	 */
	public void setSubDetail(String subDetail) {
		this.subDetail = subDetail;
	}

	/** 
	 * Returns the orderId.
	 * @return int
	 */
	public int getOrderId() {
		return orderId;
	}

	/** 
	 * Set the orderId.
	 * @param orderId The orderId to set
	 */
	public void setOrderId(int orderId) {
		this.orderId = orderId;
	}

	/** 
	 * Returns the orderTime.
	 * @return String
	 */
	public String getOrderTime() {
		return orderTime;
	}

	/** 
	 * Set the orderTime.
	 * @param orderTime The orderTime to set
	 */
	public void setOrderTime(String orderTime) {
		this.orderTime = orderTime;
	}

	public int getSubId() {
		return subId;
	}

	public void setSubId(int subId) {
		this.subId = subId;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -