首页>代码>Spring Boot1.3.6 Angularjs1.4.0 Mongodb2.3.6 CRUD汽车搜索及增加修改程式>/car/product-server/src/main/java/com/emo/product/repository/CarRepository.java
// Created by Sam Lee on 2016-08-22 package com.emo.product.repository; import java.util.List; import org.springframework.data.mongodb.repository.MongoRepository; import org.springframework.stereotype.Repository; import com.emo.product.model.Car; @Repository public interface CarRepository extends MongoRepository<Car, String> { public List<Car> findAll(); public Car findOne(String id); @SuppressWarnings("unchecked") public Car save(Car car); public void delete(Car car); }

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日