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.
49 lines
1.2 KiB
49 lines
1.2 KiB
package com.entity;
|
|
|
|
public class Carlyx {
|
|
private int car_id; // 轿车编号
|
|
private String model; // 型号
|
|
private String color; //颜色
|
|
private String manufactory; // 生产厂家
|
|
private String factory_date; // 出厂日期
|
|
private String price;// 价格
|
|
public int getCar_id() {
|
|
return car_id;
|
|
}
|
|
public void setCar_id(int car_id) {
|
|
this.car_id = car_id;
|
|
}
|
|
public String getModel() {
|
|
return model;
|
|
}
|
|
public void setModel(String model) {
|
|
this.model = model;
|
|
}
|
|
public String getColor() {
|
|
return color;
|
|
}
|
|
public void setColor(String color) {
|
|
this.color = color;
|
|
}
|
|
public String getManufactory() {
|
|
return manufactory;
|
|
}
|
|
public void setManufactory(String manufactory) {
|
|
this.manufactory = manufactory;
|
|
}
|
|
public String getFactory_date() {
|
|
return factory_date;
|
|
}
|
|
public void setFactory_date(String factory_date) {
|
|
this.factory_date = factory_date;
|
|
}
|
|
public String getPrice() {
|
|
return price;
|
|
}
|
|
public void setPrice(String price) {
|
|
this.price = price;
|
|
}
|
|
|
|
|
|
}
|