BorrowForm.java
上传用户:ycdfsj258
上传日期:2022-08-04
资源大小:1094k
文件大小:4k
源码类别:

图形图象

开发平台:

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