?? book.java~1~
字號:
package 畢業設計;
public class Book {
private String Id;
private int BarCode;
private String Name;
private String Author;
private int Page;
private String Publish;
private String Price;
private String Sort;
private String IntoTime;
private String Location;
private String Isin;
private int LoanCount;
private String Synopsis;
public Book() {
}
public void setId(String Id)
{
this.Id = Id;
}
public void setBarCode(int BarCode)
{
this.BarCode = BarCode;
}
public void setName(String Name)
{
this.Name = Name;
}
public void setAuthor(String Author)
{
this.Author = Author;
}
public void setPage(int Page)
{
this.Page = Page;
}
public void setPublish(String Publish)
{
this.Publish = Publish;
}
public void setPrice(String Price)
{
this.Price = Price;
}
public void setSort(String Sort)
{
this.Sort = Sort;
}
public void setIntoTime(String IntoTime)
{
this.IntoTime = IntoTime;
}
public void setLocation(String Location)
{
this.Location = Location;
}
public void setIsin(String Isin)
{
this.Isin = Isin;
}
public void setLoanCount(int LoanCount)
{
this.LoanCount = LoanCount;
}
public void setSynopsis(String Synopsis)
{
this.Synopsis = Synopsis;
}
public String getId()
{
return Id;
}
public int getBarCode()
{
return BarCode;
}
public String getName()
{
return Name;
}
public String getAuthor()
{
return Author;
}
public int getPage()
{
return Page;
}
public String getPublish()
{
return Publish;
}
public String getPrice()
{
return Price;
}
public String getSort()
{
return Sort;
}
public String getIntoTime()
{
return IntoTime;
}
public String getLocation()
{
return Location;
}
public String getIsin()
{
return Isin;
}
public int getLoanCount()
{
return LoanCount;
}
public String getSynopsis()
{
return Synopsis;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -