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

📄 zhuceform.java

📁 《短信平台系统》向注册用户提供向指定手机或通讯录中手机发送短信的功能
💻 JAVA
字号:
package com.ascenttech.struts.form;

import org.apache.struts.action.ActionForm;

public class ZhuceForm extends ActionForm {
    
	public ZhuceForm() {
		super();
		// TODO Auto-generated constructor stub
	}


	    /** The composite primary key value. */
	    private java.lang.String loginname;

	    /** The value of the simple userid property. */
	    private java.lang.Long userid;

	    /** The value of the simple password property. */
	    private java.lang.String password;
	    private java.lang.String repassword;

	    /** The value of the simple username property. */
	    private java.lang.String username;

	    /** The value of the simple sex property. */
	    private java.lang.String sex;

	    /** The value of the simple age property. */
	    private java.lang.Integer age;

	    /** The value of the simple education property. */
	    private java.lang.String education;

	    /** The value of the simple job property. */
	    private java.lang.String job;

	    /** The value of the simple phone property. */
	    private java.lang.String phone;

	    /** The value of the simple cell property. */
	    private java.lang.String cell;

	    /** The value of the simple company property. */
	    private java.lang.String company;

	    /** The value of the simple address property. */
	    private java.lang.String address;

	    /** The value of the simple status property. */
	    private java.lang.Integer status;

	    /** The value of the simple groupname property. */
	    private java.lang.String groupname;

	    /** The value of the simple rank property. */
	    private java.lang.Integer rank;

	    /** The value of the simple subport property. */
	    private java.lang.String subport;

	    /** The value of the simple postcode property. */
	    private java.lang.String postcode;

	   
	    /**
	     * Return the simple primary key value that identifies this object.
	     * @return java.lang.String
	     */
	    public java.lang.String getLoginname()
	    {
	        return loginname;
	    }

	    /**
	     * Set the simple primary key value that identifies this object.
	     * @param loginname
	     */
	    public void setLoginname(java.lang.String loginname)
	    {
	    
	        this.loginname = loginname;
	    }

	    /**
	     * Return the value of the userid column.
	     * @return java.lang.Long
	     */
	    public java.lang.Long getUserid()
	    {
	        return this.userid;
	    }

	    /**
	     * Set the value of the userid column.
	     * @param userid
	     */
	    public void setUserid(java.lang.Long userid)
	    {
	        this.userid = userid;
	    }

	    /**
	     * Return the value of the password column.
	     * @return java.lang.String
	     */
	    public java.lang.String getPassword()
	    {
	        return this.password;
	    }

	    /**
	     * Set the value of the password column.
	     * @param password
	     */
	    public void setPassword(java.lang.String password)
	    {
	        this.password = password;
	    }

	    /**
	     * Return the value of the username column.
	     * @return java.lang.String
	     */
	    public java.lang.String getUsername()
	    {
	        return this.username;
	    }

	    /**
	     * Set the value of the username column.
	     * @param username
	     */
	    public void setUsername(java.lang.String username)
	    {
	        this.username = username;
	    }

	    /**
	     * Return the value of the sex column.
	     * @return java.lang.String
	     */
	    public java.lang.String getSex()
	    {
	        return this.sex;
	    }

	    /**
	     * Set the value of the sex column.
	     * @param sex
	     */
	    public void setSex(java.lang.String sex)
	    {
	        this.sex = sex;
	    }

	    /**
	     * Return the value of the age column.
	     * @return java.lang.Integer
	     */
	    public java.lang.Integer getAge()
	    {
	        return this.age;
	    }

	    /**
	     * Set the value of the age column.
	     * @param age
	     */
	    public void setAge(java.lang.Integer age)
	    {
	        this.age = age;
	    }

	    /**
	     * Return the value of the education column.
	     * @return java.lang.String
	     */
	    public java.lang.String getEducation()
	    {
	        return this.education;
	    }

	    /**
	     * Set the value of the education column.
	     * @param education
	     */
	    public void setEducation(java.lang.String education)
	    {
	        this.education = education;
	    }

	    /**
	     * Return the value of the job column.
	     * @return java.lang.String
	     */
	    public java.lang.String getJob()
	    {
	        return this.job;
	    }

	    /**
	     * Set the value of the job column.
	     * @param job
	     */
	    public void setJob(java.lang.String job)
	    {
	        this.job = job;
	    }

	    /**
	     * Return the value of the phone column.
	     * @return java.lang.String
	     */
	    public java.lang.String getPhone()
	    {
	        return this.phone;
	    }

	    /**
	     * Set the value of the phone column.
	     * @param phone
	     */
	    public void setPhone(java.lang.String phone)
	    {
	        this.phone = phone;
	    }

	    /**
	     * Return the value of the cell column.
	     * @return java.lang.String
	     */
	    public java.lang.String getCell()
	    {
	        return this.cell;
	    }

	    /**
	     * Set the value of the cell column.
	     * @param cell
	     */
	    public void setCell(java.lang.String cell)
	    {
	        this.cell = cell;
	    }

	    /**
	     * Return the value of the company column.
	     * @return java.lang.String
	     */
	    public java.lang.String getCompany()
	    {
	        return this.company;
	    }

	    /**
	     * Set the value of the company column.
	     * @param company
	     */
	    public void setCompany(java.lang.String company)
	    {
	        this.company = company;
	    }

	    /**
	     * Return the value of the address column.
	     * @return java.lang.String
	     */
	    public java.lang.String getAddress()
	    {
	        return this.address;
	    }

	    /**
	     * Set the value of the address column.
	     * @param address
	     */
	    public void setAddress(java.lang.String address)
	    {
	        this.address = address;
	    }

	    /**
	     * Return the value of the status column.
	     * @return java.lang.Integer
	     */
	    public java.lang.Integer getStatus()
	    {
	        return this.status;
	    }

	    /**
	     * Set the value of the status column.
	     * @param status
	     */
	    public void setStatus(java.lang.Integer status)
	    {
	        this.status = status;
	    }

	    /**
	     * Return the value of the groupname column.
	     * @return java.lang.String
	     */
	    public java.lang.String getGroupname()
	    {
	        return this.groupname;
	    }

	    /**
	     * Set the value of the groupname column.
	     * @param groupname
	     */
	    public void setGroupname(java.lang.String groupname)
	    {
	        this.groupname = groupname;
	    }

	    /**
	     * Return the value of the rank column.
	     * @return java.lang.Integer
	     */
	    public java.lang.Integer getRank()
	    {
	        return this.rank;
	    }

	    /**
	     * Set the value of the rank column.
	     * @param rank
	     */
	    public void setRank(java.lang.Integer rank)
	    {
	        this.rank = rank;
	    }

	    /**
	     * Return the value of the subport column.
	     * @return java.lang.String
	     */
	    public java.lang.String getSubport()
	    {
	        return this.subport;
	    }

	    /**
	     * Set the value of the subport column.
	     * @param subport
	     */
	    public void setSubport(java.lang.String subport)
	    {
	        this.subport = subport;
	    }

	    /**
	     * Return the value of the postcode column.
	     * @return java.lang.String
	     */
	    public java.lang.String getPostcode()
	    {
	        return this.postcode;
	    }

	    /**
	     * Set the value of the postcode column.
	     * @param postcode
	     */
	    public void setPostcode(java.lang.String postcode)
	    {
	        this.postcode = postcode;
	    }

		public java.lang.String getRepassword() {
			return repassword;
		}

		public void setRepassword(java.lang.String repassword) {
			this.repassword = repassword;
		}

	    

}

⌨️ 快捷键说明

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