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

📄 productform.java

📁 jsp网页
💻 JAVA
字号:

package com.rfid.struts.form;

import java.util.Date;

import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;


public class ProductForm extends ActionForm {

	private String name;
	private String todo;
	private int instore_id;
	private int outstore_id;
	private int order_id;
	private String rfid_id;
	private Date  product_time;
    int number;
	
	public int getOrder_id() {
		return order_id;
	}

	public void setOrder_id(int order_id) {
		this.order_id = order_id;
	}

	public String getTodo() {
		return todo;
	}

	public void setTodo(String todo) {
		this.todo = todo;
	}
    public String getRfid_id(){
    	return rfid_id;
    }
    public void setRfid_id(String rfid_id){
    	this.rfid_id = rfid_id;
    }

	
	public ActionErrors validate(ActionMapping mapping,
			HttpServletRequest request) {
		// TODO Auto-generated method stub
		return null;
	}


	public void reset(ActionMapping mapping, HttpServletRequest request) {
		// TODO Auto-generated method stub
	}

	public String getName() {
		return name;
	}

	
	public void setName(String name) {
		this.name = name;
	}
	public int getInStore_id(){
		return instore_id;
	}
	public void setInStore_id(int instore_id){
		this.instore_id = instore_id;
	}
	public int getOutstore_id(){
		return outstore_id;
	}
	public void setOutStore_id(int outstore_id){
		this.outstore_id = outstore_id;
	}
    public Date getProduct_time(){
    	return product_time;
    }
    public void setProduct_time(Date product_time){
    	this.product_time = product_time;
    }
	public void setNumber(int number) {
		this.number = number;
	}

	public int getNumber() {
		return number;
	}
}

⌨️ 快捷键说明

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