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

📄 funddtoactionform.java

📁 EJB+Struts+Webservice实现的开放式基金管理系统
💻 JAVA
字号:
package com.fund.fund.struts;

import org.apache.struts.action.ActionForm;
import java.sql.Timestamp;
import java.util.Collection;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import javax.servlet.http.HttpServletRequest;

/**
 *
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2005</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class FundDtoActionForm extends ActionForm {
    /**
     *fundNo
     */
    private Integer fundNo;
    /**
     * fundName
     */
    private String fundName;
    /**
     *price
     */
    private Double price;
    /**
     * description
     */
    private String description;
    /**
     *status
     */
    private String status;
    /**
     *createdDate
     */
    private Timestamp createdDate;
    /**
     *detailListCollection
     */
    private Collection detailListCollection;
    /**
     *
     * @return Integer
     */
    public Integer getFundNo() {
        return fundNo;
    }

    /**
     *
     * @param fundNo Integer
     */
    public void setFundNo(Integer fundNo) {
        this.fundNo = fundNo;
    }

    /**
     *
     * @return String
     */
    public String getFundName() {
        return fundName;
    }

    /**
     *
     * @param fundName String
     */
    public void setFundName(String fundName) {
        this.fundName = fundName;
    }

    /**
     *
     * @return Double
     */
    public Double getPrice() {
        return price;
    }

    /**
     *
     * @param price Double
     */
    public void setPrice(Double price) {
        this.price = price;
    }

    /**
     *
     * @return String
     */
    public String getDescription() {
        return description;
    }

    /**
     *
     * @param description String
     */
    public void setDescription(String description) {
        this.description = description;
    }

    /**
     *
     * @return String
     */
    public String getStatus() {
        return status;
    }

    /**
     *
     * @param status String
     */
    public void setStatus(String status) {
        this.status = status;
    }

    /**
     *
     * @return Timestamp
     */
    public Timestamp getCreatedDate() {
        return createdDate;
    }

    /**
     *
     * @param createdDate Timestamp
     */
    public void setCreatedDate(Timestamp createdDate) {
        this.createdDate = createdDate;
    }

    /**
     *
     * @return Collection
     */
    public Collection getdetailListCollection() {
        return detailListCollection;
    }

    /**
     *
     * @param detailListCollection Collection
     */
    public void setdetailListCollection(Collection detailListCollection) {
        this.detailListCollection = detailListCollection;
    }

    /**
     *
     * @param actionMapping ActionMapping
     * @param httpServletRequest HttpServletRequest
     * @return ActionErrors
     */
    public ActionErrors validate(ActionMapping actionMapping,
                                 HttpServletRequest httpServletRequest) {
        return null;
    }

    /**
     *
     * @param actionMapping ActionMapping
     * @param httpServletRequest HttpServletRequest
     */
    public void reset(ActionMapping actionMapping,
                      HttpServletRequest httpServletRequest) {
    }
}

⌨️ 快捷键说明

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