📄 car.java
字号:
package com.today.car.vo;
public class Car {
private String p_name;
private int p_id;
private float p_price;
private int buy_count;
public String getP_name() {
return p_name;
}
public void setP_name(String p_name) {
this.p_name = p_name;
}
public int getP_id() {
return p_id;
}
public void setP_id(int p_id) {
this.p_id = p_id;
}
public float getP_price() {
return p_price;
}
public void setP_price(float p_price) {
this.p_price = p_price;
}
public int getBuy_count() {
return buy_count;
}
public void setBuy_count(int buy_count) {
this.buy_count = buy_count;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -