📄 oa_car_informationitem.java
字号:
package com.vere.oa.car.item; import java.io.*; public class Oa_car_informationItem implements Serializable { private String id;// private String car_no;//车牌号 private String brand;//品牌 private String model;//型号 private String color;//颜色 private String buy_date;//购买日期 private String valid_time;//有效期 private String price;//购买价格 private String supplier;//供应商 private String supply_contact;//供应联系人 private String supply_telephone;//供应联系电话 private String maintain_site;//维修站 private String maintain_contact;//维修联系人 private String maintain_telephone;//维修联系电话 private String pilot;//驾驶员 private String memo;//备注 private String discard_time;//报废日期 private String status;//状态 private Oa_car_pilotItem car_pilotItem; public Oa_car_informationItem() { } /** * @see */ public String getId() { if(this.id==null) this.id=""; return this.id; } /** * @see */ public void setId(String id) { this.id=id; } /** * @see 车牌号 */ public String getCar_no() { if(this.car_no==null) this.car_no=""; return this.car_no; } /** * @see 车牌号 */ public void setCar_no(String car_no) { this.car_no=car_no; } /** * @see 品牌 */ public String getBrand() { if(this.brand==null) this.brand=""; return this.brand; } /** * @see 品牌 */ public void setBrand(String brand) { this.brand=brand; } /** * @see 型号 */ public String getModel() { if(this.model==null) this.model=""; return this.model; } /** * @see 型号 */ public void setModel(String model) { this.model=model; } /** * @see 颜色 */ public String getColor() { if(this.color==null) this.color=""; return this.color; } /** * @see 颜色 */ public void setColor(String color) { this.color=color; } /** * @see 购买日期 */ public String getBuy_date() { if(this.buy_date==null) this.buy_date=""; return this.buy_date; } /** * @see 购买日期 */ public void setBuy_date(String buy_date) { this.buy_date=buy_date; } /** * @see 有效期 */ public String getValid_time() { if(this.valid_time==null) this.valid_time=""; return this.valid_time; } /** * @see 有效期 */ public void setValid_time(String valid_time) { this.valid_time=valid_time; } /** * @see 购买价格 */ public String getPrice() { if(this.price==null) this.price=""; return this.price; } /** * @see 购买价格 */ public void setPrice(String price) { this.price=price; } /** * @see 供应商 */ public String getSupplier() { if(this.supplier==null) this.supplier=""; return this.supplier; } /** * @see 供应商 */ public void setSupplier(String supplier) { this.supplier=supplier; } /** * @see 供应联系人 */ public String getSupply_contact() { if(this.supply_contact==null) this.supply_contact=""; return this.supply_contact; } /** * @see 供应联系人 */ public void setSupply_contact(String supply_contact) { this.supply_contact=supply_contact; } /** * @see 供应联系电话 */ public String getSupply_telephone() { if(this.supply_telephone==null) this.supply_telephone=""; return this.supply_telephone; } /** * @see 供应联系电话 */ public void setSupply_telephone(String supply_telephone) { this.supply_telephone=supply_telephone; } /** * @see 维修站 */ public String getMaintain_site() { if(this.maintain_site==null) this.maintain_site=""; return this.maintain_site; } /** * @see 维修站 */ public void setMaintain_site(String maintain_site) { this.maintain_site=maintain_site; } /** * @see 维修联系人 */ public String getMaintain_contact() { if(this.maintain_contact==null) this.maintain_contact=""; return this.maintain_contact; } /** * @see 维修联系人 */ public void setMaintain_contact(String maintain_contact) { this.maintain_contact=maintain_contact; } /** * @see 维修联系电话 */ public String getMaintain_telephone() { if(this.maintain_telephone==null) this.maintain_telephone=""; return this.maintain_telephone; } /** * @see 维修联系电话 */ public void setMaintain_telephone(String maintain_telephone) { this.maintain_telephone=maintain_telephone; } /** * @see 驾驶员 */ public String getPilot() { if(this.pilot==null) this.pilot=""; return this.pilot; } /** * @see 驾驶员 */ public void setPilot(String pilot) { this.pilot=pilot; } /** * @see 备注 */ public String getMemo() { if(this.memo==null) this.memo=""; return this.memo; } /** * @see 备注 */ public void setMemo(String memo) { this.memo=memo; } /** * @see 报废日期 */ public String getDiscard_time() { if(this.discard_time==null) this.discard_time=""; return this.discard_time; } /** * @see 报废日期 */ public void setDiscard_time(String discard_time) { this.discard_time=discard_time; } /** * @see 状态 */ public String getStatus() { if(this.status==null) this.status=""; return this.status; } /** * @see 状态 */ public void setStatus(String status) { this.status=status; } /** * @see 驾驶员 */ public Oa_car_pilotItem getOa_car_pilotItem() { return this.car_pilotItem; } /** * @see 驾驶员 */ public void setOa_car_pilotItem(Oa_car_pilotItem car_pilotItem) { this.car_pilotItem=car_pilotItem; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -