📄 car.java
字号:
package domian.user;
import java.io.Serializable;
public class Car implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
private String carid;
private String cartype;
private String carlor;
private int price;
private int rentprice;
private int deposit;
private String isrenting;
private String description;
private RentTable rentable;
public String getCarid() {
return carid;
}
public void setCarid(String carid) {
this.carid = carid;
}
public RentTable getRentable() {
return rentable;
}
public void setRentable(RentTable rentable) {
this.rentable = rentable;
}
public String getCartype() {
return cartype;
}
public void setCartype(String cartype) {
this.cartype = cartype;
}
public String getCarlor() {
return carlor;
}
public void setCarlor(String carlor) {
this.carlor = carlor;
}
public int getPrice() {
return price;
}
public void setPrice(int price) {
this.price = price;
}
public int getRentprice() {
return rentprice;
}
public void setRentprice(int rentprice) {
this.rentprice = rentprice;
}
public int getDeposit() {
return deposit;
}
public void setDeposit(int deposit) {
this.deposit = deposit;
}
public String getIsrenting() {
return isrenting;
}
public void setIsrenting(String isrenting) {
this.isrenting = isrenting;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -