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

📄 salesdtoactionform.java

📁 EJB+Struts+Webservice实现的开放式基金管理系统
💻 JAVA
字号:
package com.fund.sales.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 SalesDtoActionForm extends ActionForm {
    /**
     * salesNo
     */
    private Integer salesNo;
    /**
     * username
     */
    private String username;
    /**
     * password
     */
    private String password;
    /**
     * realname
     */
    private String realname;
    /**
     * sex
     */
    private String sex;
    /**
     * createdDate
     */
    private Timestamp createdDate;
    /**
     * ___detailListCollection
     */
    private Collection ___detailListCollection;
    /**
     *
     * @return Integer
     */
    public Integer getSalesNo() {
        return salesNo;
    }

    /**
     *
     * @param salesNo Integer
     */
    public void setSalesNo(Integer salesNo) {
        this.salesNo = salesNo;
    }

    /**
     *
     * @return String
     */
    public String getUsername() {
        return username;
    }

    /**
     *
     * @param username String
     */
    public void setUsername(String username) {
        this.username = username;
    }

    /**
     *
     * @return String
     */
    public String getPassword() {
        return password;
    }

    /**
     *
     * @param password String
     */
    public void setPassword(String password) {
        this.password = password;
    }

    /**
     *
     * @return String
     */
    public String getRealname() {
        return realname;
    }

    /**
     *
     * @param realname String
     */
    public void setRealname(String realname) {
        this.realname = realname;
    }

    /**
     *
     * @return String
     */
    public String getSex() {
        return sex;
    }

    /**
     *
     * @param sex String
     */
    public void setSex(String sex) {
        this.sex = sex;
    }

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

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

    /**
     *
     * @return Collection
     */
    public Collection get___detailListCollection() {
        return ___detailListCollection;
    }

    /**
     *
     * @param ___detailListCollection Collection
     */
    public void
            set___detailListCollection(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 + -