首页>代码>Spring Boot1.3.6 Angularjs1.4.0 Mongodb2.3.6 CRUD汽车搜索及增加修改程式>/car/product-server/src/main/java/com/emo/product/model/Car.java
// Created by Sam Lee on 2016-08-22 package com.emo.product.model; import org.springframework.data.mongodb.core.mapping.Document; @Document(collection = "cars") public class Car { private String id; private String make; private String model; private String description; private Integer year; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getMake() { return make; } public void setMake(String make) { this.make = make; } public String getModel() { return model; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public void setModel(String model) { this.model = model; } public Integer getYear() { return year; } public void setYear(Integer year) { this.year = year; } }

1529860026 LV24
2020年9月15日
aqsx1598 LV7
2020年8月24日
lll111 LV16
2020年7月15日
123456nty LV37
2020年7月6日
mjx201 LV11
2020年2月2日
lhp340 LV6
2019年10月22日
qq1453363097 LV13
2019年4月24日
一道念 LV10
2019年2月2日
genese LV4
2019年1月7日
agaciki123 LV12
2018年11月16日