spring-web-modules-kubernet.../api/src/main/kotlin/com/cubetiqs/web/infrastructure/repository/CustomerRepository.kt

8 lines
298 B
Kotlin
Raw Normal View History

2021-12-21 11:55:35 +07:00
package com.cubetiqs.web.infrastructure.repository
import com.cubetiqs.web.infrastructure.data.Customer
import org.springframework.data.mongodb.repository.MongoRepository
import org.springframework.stereotype.Repository
@Repository
interface CustomerRepository : MongoRepository<Customer, String>