ManagerForm.java
上传用户:toby828
上传日期:2015-06-26
资源大小:8558k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package com.domain;
  2. import org.apache.struts.action.*;
  3. import javax.servlet.http.HttpServletRequest;
  4. //管理员bean
  5. public class ManagerForm
  6.     extends ActionForm {
  7.   private String account="";//管理员账号
  8.   private Integer id=Integer.valueOf("-1");//数据库流水号
  9.   private String name="";//管理员名称
  10.   private String password="";//管理员登录密码
  11.   private Integer sigh=Integer.valueOf("-1");//管理员标识(1:是、0否)
  12.  //构造方法
  13.   public ManagerForm(){}
  14.   public String getAccount() {
  15.     return account;
  16.   }
  17.   public void setAccount(String account) {
  18.     this.account = account;
  19.   }
  20.   public void setSigh(Integer sigh) {
  21.     this.sigh = sigh;
  22.   }
  23.   public void setPassword(String password) {
  24.     this.password = password;
  25.   }
  26.   public void setName(String name) {
  27.     this.name = name;
  28.   }
  29.   public void setId(Integer id) {
  30.     this.id = id;
  31.   }
  32.   public Integer getId() {
  33.     return id;
  34.   }
  35.   public String getName() {
  36.     return name;
  37.   }
  38.   public String getPassword() {
  39.     return password;
  40.   }
  41.   public Integer getSigh() {
  42.     return sigh;
  43.   }
  44.   public ActionErrors validate(ActionMapping actionMapping,
  45.                                HttpServletRequest httpServletRequest) {
  46.       /** @todo: finish this method, this is just the skeleton.*/
  47.     return null;
  48.   }
  49.   public void reset(ActionMapping actionMapping,
  50.                     HttpServletRequest servletRequest) {
  51.   }
  52. }