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

Jsp/Servlet

开发平台:

Java

  1. package com.actionForm;
  2. import org.apache.struts.action.ActionForm;
  3. import org.apache.struts.action.ActionErrors;
  4. import org.apache.struts.action.ActionMapping;
  5. import javax.servlet.http.HttpServletRequest;
  6. public class BookForm extends ActionForm {
  7.     private String author;
  8.     private String barcode;
  9.     private String bookName;
  10.     private String bookcaseName;
  11.     private Integer bookcaseid;
  12.     private Integer days;
  13.     private Integer del;
  14.     private Integer id;
  15.     private String inTime;
  16.     private String isbn;
  17.     private String operator;
  18.     private Integer page;
  19.     private Float price;
  20.     private String publishing;
  21.     private Integer storager;
  22.     private String translator;
  23.     private Integer typeId;
  24.     private String typeName;
  25.     public String getAuthor() {
  26.         return author;
  27.     }
  28.     public void setAuthor(String author) {
  29.         this.author = author;
  30.     }
  31.     public void setTypeName(String typeName) {
  32.         this.typeName = typeName;
  33.     }
  34.     public void setTypeId(Integer typeId) {
  35.         this.typeId = typeId;
  36.     }
  37.     public void setTranslator(String translator) {
  38.         this.translator = translator;
  39.     }
  40.     public void setStorager(Integer storager) {
  41.         this.storager = storager;
  42.     }
  43.     public void setPublishing(String publishing) {
  44.         this.publishing = publishing;
  45.     }
  46.     public void setPrice(Float price) {
  47.         this.price = price;
  48.     }
  49.     public void setPage(Integer page) {
  50.         this.page = page;
  51.     }
  52.     public void setOperator(String operator) {
  53.         this.operator = operator;
  54.     }
  55.     public void setIsbn(String isbn) {
  56.         this.isbn = isbn;
  57.     }
  58.     public void setInTime(String inTime) {
  59.         this.inTime = inTime;
  60.     }
  61.     public void setId(Integer id) {
  62.         this.id = id;
  63.     }
  64.     public void setDel(Integer del) {
  65.         this.del = del;
  66.     }
  67.     public void setDays(Integer days) {
  68.         this.days = days;
  69.     }
  70.     public void setBookcaseid(Integer bookcaseid) {
  71.         this.bookcaseid = bookcaseid;
  72.     }
  73.     public void setBookcaseName(String bookcaseName) {
  74.         this.bookcaseName = bookcaseName;
  75.     }
  76.     public void setBookName(String bookName) {
  77.         this.bookName = bookName;
  78.     }
  79.     public void setBarcode(String barcode) {
  80.         this.barcode = barcode;
  81.     }
  82.     public String getBarcode() {
  83.         return barcode;
  84.     }
  85.     public String getBookName() {
  86.         return bookName;
  87.     }
  88.     public String getBookcaseName() {
  89.         return bookcaseName;
  90.     }
  91.     public Integer getBookcaseid() {
  92.         return bookcaseid;
  93.     }
  94.     public Integer getDays() {
  95.         return days;
  96.     }
  97.     public Integer getDel() {
  98.         return del;
  99.     }
  100.     public Integer getId() {
  101.         return id;
  102.     }
  103.     public String getInTime() {
  104.         return inTime;
  105.     }
  106.     public String getIsbn() {
  107.         return isbn;
  108.     }
  109.     public String getOperator() {
  110.         return operator;
  111.     }
  112.     public Integer getPage() {
  113.         return page;
  114.     }
  115.     public Float getPrice() {
  116.         return price;
  117.     }
  118.     public String getPublishing() {
  119.         return publishing;
  120.     }
  121.     public Integer getStorager() {
  122.         return storager;
  123.     }
  124.     public String getTranslator() {
  125.         return translator;
  126.     }
  127.     public Integer getTypeId() {
  128.         return typeId;
  129.     }
  130.     public String getTypeName() {
  131.         return typeName;
  132.     }
  133.     public ActionErrors validate(ActionMapping actionMapping,
  134.                                  HttpServletRequest httpServletRequest) {
  135.             /** @todo: finish this method, this is just the skeleton.*/
  136.         return null;
  137.     }
  138.     public void reset(ActionMapping actionMapping,
  139.                       HttpServletRequest servletRequest) {
  140.     }
  141. }