BorrowForm.java~14~
上传用户: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.     public String getBackTime() {
  27.         return backTime;
  28.     }
  29.     public void setBackTime(String backTime) {
  30.         this.backTime = backTime;
  31.     }
  32.     public void setReaderId(int readerId) {
  33.         this.readerId = readerId;
  34.     }
  35.     public void setReaderBarcode(String readerBarcode) {
  36.         this.readerBarcode = readerBarcode;
  37.     }
  38.     public void setPubName(String pubName) {
  39.         this.pubName = pubName;
  40.     }
  41.     public void setPrice(Float price) {
  42.         this.price = price;
  43.     }
  44.     public void setOperator(String operator) {
  45.         this.operator = operator;
  46.     }
  47.     public void setIfBack(int ifBack) {
  48.         this.ifBack = ifBack;
  49.     }
  50.     public void setId(Integer id) {
  51.         this.id = id;
  52.     }
  53.     public void setBorrowTime(String borrowTime) {
  54.         this.borrowTime = borrowTime;
  55.     }
  56.     public void setBookcaseName(String bookcaseName) {
  57.         this.bookcaseName = bookcaseName;
  58.     }
  59.     public void setBookName(String bookName) {
  60.         this.bookName = bookName;
  61.     }
  62.     public void setBookId(int bookId) {
  63.         this.bookId = bookId;
  64.     }
  65.     public void setBookBarcode(String bookBarcode) {
  66.         this.bookBarcode = bookBarcode;
  67.     }
  68.     public void setDegree(int degree) {
  69.        this.degree=degree;
  70.     }
  71.     public String getBookBarcode() {
  72.         return bookBarcode;
  73.     }
  74.     public int getBookId() {
  75.         return bookId;
  76.     }
  77.     public String getBookName() {
  78.         return bookName;
  79.     }
  80.     public String getBookcaseName() {
  81.         return bookcaseName;
  82.     }
  83.     public String getBorrowTime() {
  84.         return borrowTime;
  85.     }
  86.     public Integer getId() {
  87.         return id;
  88.     }
  89.     public int getIfBack() {
  90.         return ifBack;
  91.     }
  92.     public String getOperator() {
  93.         return operator;
  94.     }
  95.     public Float getPrice() {
  96.         return price;
  97.     }
  98.     public String getPubName() {
  99.         return pubName;
  100.     }
  101.     public String getReaderBarcode() {
  102.         return readerBarcode;
  103.     }
  104.     public int getReaderId() {
  105.         return readerId;
  106.     }
  107.     public int getDegree() {
  108.         return degree;
  109.     }
  110.     public void setAuthor(String author) {
  111.         this.author = author;
  112.     }
  113.     public String getAuthor() {
  114.        return author;
  115.     }
  116.     public void setStorage(int storage) {
  117.         this.storage = storage;
  118.     }
  119.     public int getStorage() {
  120.        return storage;
  121.     }
  122.     public void setBookType(String bookType) {
  123.         this.bookType = bookType;
  124.     }
  125.     public String getBookType() {
  126.        return bookType;
  127.     }
  128.     public void setReaderName(String readerName) {
  129.         this.readerName = readerName;
  130.     }
  131.     public String getReaderName() {
  132.        return readerName;
  133.     }
  134.     public void setSex(String sex) {
  135.         this.sex = sex;
  136.     }
  137.     public String getSex() {
  138.        return sex;
  139.     }
  140.     public void setBirthday(String birthday) {
  141.        this.birthday = birthday;
  142.    }
  143.    public String getBirthday() {
  144.       return birthday;
  145.     }
  146.     public void setPaperType(String paperType) {
  147.        this.paperType = paperType;
  148.    }
  149.    public String getPaperType() {
  150.       return paperType;
  151.     }
  152.     public void setPaperNo(String paperNo) {
  153.        this.paperNo = paperNo;
  154.    }
  155.    public String getPaperNo() {
  156.       return paperNo;
  157.     }
  158. }