12 lines
227 B
Java
12 lines
227 B
Java
package example.service;
|
|
|
|
import example.repo.Customer1120Repository;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class Customer1120Service {
|
|
public Customer1120Service(Customer1120Repository repo) {
|
|
}
|
|
}
|