huanhudianform.java

来自「jxc 企业资源系统ERP 的一部分」· Java 代码 · 共 130 行

JAVA
130
字号
package com.luoin.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 HuanhudianForm extends ActionForm{

	 private Integer id;
     private Integer info;
     private String popedom;
     private String customercompany;
     private String customer;
     private String tel;
     private String address;
     private String customerId;
     private Date date;
     private String qujingli;
     private String dingId;


     public ActionErrors validate(ActionMapping mapping,
 			HttpServletRequest request) {

 		return null;
 	}

 	public void reset(ActionMapping mapping, HttpServletRequest request) {
 		
 	}

    public Integer getId() {
        return this.id;
    }
    
    public void setId(Integer id) {
        this.id = id;
    }

    public Integer getInfo() {
        return this.info;
    }
    
    public void setInfo(Integer info) {
        this.info = info;
    }

    public String getPopedom() {
        return this.popedom;
    }
    
    public void setPopedom(String popedom) {
        this.popedom = popedom;
    }

    public String getCustomercompany() {
        return this.customercompany;
    }
    
    public void setCustomercompany(String customercompany) {
        this.customercompany = customercompany;
    }

    public String getCustomer() {
        return this.customer;
    }
    
    public void setCustomer(String customer) {
        this.customer = customer;
    }

    public String getTel() {
        return this.tel;
    }
    
    public void setTel(String tel) {
        this.tel = tel;
    }

    public String getAddress() {
        return this.address;
    }
    
    public void setAddress(String address) {
        this.address = address;
    }

    public String getCustomerId() {
        return this.customerId;
    }
    
    public void setCustomerId(String customerId) {
        this.customerId = customerId;
    }

    public Date getDate() {
        return this.date;
    }
    
    public void setDate(Date date) {
        this.date = date;
    }

    public String getQujingli() {
        return this.qujingli;
    }
    
    public void setQujingli(String qujingli) {
        this.qujingli = qujingli;
    }

    public String getDingId() {
        return this.dingId;
    }
    
    public void setDingId(String dingId) {
        this.dingId = dingId;
    }
   





}

⌨️ 快捷键说明

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