You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 lines
1.4 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package mvc»ù´¡2;
/**
* å¾ä¹¦æ¨¡åžç±»ï¼ˆModelå±ï¼‰ å­˜å¨å¾ä¹¦çš„基本信æ<C2A1>¯ï¼Œæ<C592><C3A6>ä¾å±žæ€§è®¿é—®æ¹æ³?
* @author The Administrator
* @version 1.0
* @created 26-10ÔÂ-2025 22:50:57
*/
class Book {
private String author;
/**
* ç§<C3A7>有属性(å°<C3A5>装数æ<C2B0>®ï¼?
*/
private int id;
private double price;
private String title;
public BookController m_BookController;
public void finalize() throws Throwable {
}
/**
* æ— å<C2A0>æž„é€ æ¹æ³?
*/
public Book(){
}
/**
* å…¨å<C2A8>æž„é€ æ¹æ³•(便于åˆå»ºå¾ä¹¦å¯¹è±¡ï¼?
*
* @param id
* @param title
* @param author
* @param price
*/
public Book(int id, String title, String author, double price){
}
public String getAuthor(){
return "";
}
/**
* GetteråŒSetteræ¹æ³•(æ<CB86><C3A6>ä¾å±žæ€§è®¿é—®æŽ¥å<C2A5>£ï¼‰
*/
public int getId(){
return 0;
}
public double getPrice(){
return 0;
}
public String getTitle(){
return "";
}
/**
*
* @param author
*/
public void setAuthor(String author){
}
/**
*
* @param id
*/
public void setId(int id){
}
/**
*
* @param price
*/
public void setPrice(double price){
}
/**
*
* @param title
*/
public void setTitle(String title){
}
/**
* é‡<C3A9>写toStringæ¹æ³•,便于打å<E2809C>°å¾ä¹¦ä¿¡æ<C2A1>?
*/
@Override
public String toString(){
return "";
}
}//end Book