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

Jsp/Servlet

开发平台:

Java

  1. package com.actionForm;
  2. import org.apache.struts.action.ActionForm;
  3. public class BorrowForm extends ActionForm {
  4.     private String backTime;
  5.     private String bookBarcode;
  6.     private int bookId;
  7.     private String bookName;
  8.     private String bookcaseName;
  9.     private String borrowTime;
  10.     private Integer id;
  11.     private int ifBack;
  12.     private String operator;
  13.     private Float price;
  14.     private String pubName;
  15.     private String readerBarcode;
  16.     private int readerId;
  17.     private int degree;
  18.     private String author;
  19.     private int storage;
  20.     private String bookType;
  21.     private String readerName;
  22.     private String sex;
  23.     private String birthday;
  24.     private String paperType;
  25.     private String paperNo;
  26.     private String tel;
  27.     public String getBackTime() {
  28.         return backTime;
  29.     }
  30.     public void setBackTime(String backTime) {
  31.         this.backTime = backTime;
  32.     }
  33.     public void setReaderId(int readerId) {
  34.         this.readerId = readerId;
  35.     }
  36.     public void setReaderBarcode(String readerBarcode) {
  37.         this.readerBarcode = readerBarcode;
  38.     }
  39.     public void setPubName(String pubName) {
  40.         this.pubName = pubName;
  41.     }
  42.     public void setPrice(Float price) {
  43.         this.price = price;
  44.     }
  45.     public void setOperator(String operator) {
  46.         this.operator = operator;
  47.     }
  48.     public void setIfBack(int ifBack) {
  49.         this.ifBack = ifBack;
  50.     }
  51.     public void setId(Integer id) {
  52.         this.id = id;
  53.     }
  54.     public void setBorrowTime(String borrowTime) {
  55.         this.borrowTime = borrowTime;
  56.     }
  57.     public void setBookcaseName(String bookcaseName) {
  58.         this.bookcaseName = bookcaseName;
  59.     }
  60.     public void setBookName(String bookName) {
  61.         this.bookName = bookName;
  62.     }
  63.     public void setBookId(int bookId) {
  64.         this.bookId = bookId;
  65.     }
  66.     public void setBookBarcode(String bookBarcode) {
  67.         this.bookBarcode = bookBarcode;
  68.     }
  69.     public void setDegree(int degree) {
  70.        this.degree=degree;
  71.     }
  72.     public String getBookBarcode() {
  73.         return bookBarcode;
  74.     }
  75.     public int getBookId() {
  76.         return bookId;
  77.     }
  78.     public String getBookName() {
  79.         return bookName;
  80.     }
  81.     public String getBookcaseName() {
  82.         return bookcaseName;
  83.     }
  84.     public String getBorrowTime() {
  85.         return borrowTime;
  86.     }
  87.     public Integer getId() {
  88.         return id;
  89.     }
  90.     public int getIfBack() {
  91.         return ifBack;
  92.     }
  93.     public String getOperator() {
  94.         return operator;
  95.     }
  96.     public Float getPrice() {
  97.         return price;
  98.     }
  99.     public String getPubName() {
  100.         return pubName;
  101.     }
  102.     public String getReaderBarcode() {
  103.         return readerBarcode;
  104.     }
  105.     public int getReaderId() {
  106.         return readerId;
  107.     }
  108.     public int getDegree() {
  109.         return degree;
  110.     }
  111.     public void setAuthor(String author) {
  112.         this.author = author;
  113.     }
  114.     public String getAuthor() {
  115.        return author;
  116.     }
  117.     public void setStorage(int storage) {
  118.         this.storage = storage;
  119.     }
  120.     public int getStorage() {
  121.        return storage;
  122.     }
  123.     public void setBookType(String bookType) {
  124.         this.bookType = bookType;
  125.     }
  126.     public String getBookType() {
  127.        return bookType;
  128.     }
  129.     public void setReaderName(String readerName) {
  130.         this.readerName = readerName;
  131.     }
  132.     public String getReaderName() {
  133.        return readerName;
  134.     }
  135.     public void setSex(String sex) {
  136.         this.sex = sex;
  137.     }
  138.     public String getSex() {
  139.        return sex;
  140.     }
  141.     public void setBirthday(String birthday) {
  142.        this.birthday = birthday;
  143.    }
  144.    public String getBirthday() {
  145.       return birthday;
  146.     }
  147.     public void setPaperType(String paperType) {
  148.        this.paperType = paperType;
  149.    }
  150.    public String getPaperType() {
  151.       return paperType;
  152.     }
  153.     public void setPaperNo(String paperNo) {
  154.        this.paperNo = paperNo;
  155.    }
  156.    public String getPaperNo() {
  157.       return paperNo;
  158.     }
  159.     public void setTel(String tel) {
  160.       this.tel = tel;
  161.   }
  162.   public String getTel() {
  163.      return tel;
  164.     }
  165. }