⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 borrowbookform.java

📁 图书管理系统 jsp+tomcat+sql2000
💻 JAVA
字号:
package com.actionForm;


import org.apache.struts.action.*;
//借阅管理属性
public class BorrowBookForm extends ActionForm {
    private String bookAuthor="";
    private String bookName="";
    private String bookPunbilc="";
    private String overTime="";
    private String readerCard="";
    private String startTime="";
    private int booklink=0;
    private int id=0;
    private float bookPrice=0;
    private float lendPrice=0;
    private String lend="";
    private String operation="";

    public String getBookAuthor() {
        return bookAuthor;
    }

    public void setBookAuthor(String bookAuthor) {
        this.bookAuthor = bookAuthor;
    }

    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }

    public void setReaderCard(String readerCard) {
        this.readerCard = readerCard;
    }

    public void setOverTime(String overTime) {
        this.overTime = overTime;
    }

    public void setBookPunbilc(String bookPunbilc) {
        this.bookPunbilc = bookPunbilc;
    }

    public void setBookName(String bookName) {
        this.bookName = bookName;
    }

    public void setBooklink(int booklink) {
        this.booklink = booklink;
    }

    public void setId(int id) {
        this.id = id;
    }

    public void setBookPrice(float bookPrice) {
        this.bookPrice = bookPrice;
    }

    public void setLendPrice(float lendPrice) {
        this.lendPrice = lendPrice;
    }

    public void setLend(String lend) {
        this.lend = lend;
    }

    public void setOperation(String operation) {
        this.operation = operation;
    }

    public String getBookName() {
        return bookName;
    }

    public String getBookPunbilc() {
        return bookPunbilc;
    }

    public String getOverTime() {
        return overTime;
    }

    public String getReaderCard() {
        return readerCard;
    }

    public String getStartTime() {
        return startTime;
    }

    public int getBooklink() {
        return booklink;
    }

    public int getId() {
        return id;
    }

    public float getBookPrice() {
        return bookPrice;
    }

    public float getLendPrice() {
        return lendPrice;
    }

    public String getLend() {
        return lend;
    }

    public String getOperation() {
        return operation;
    }


}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -