Newer
Older
test-sample / src / main / java / com / example / testsample / Sample2DomainService.java
yhornisse on 9 Oct 2023 219 bytes add test sample
package com.example.testsample;

import org.springframework.stereotype.Service;

@Service
public class Sample2DomainService {

  public Sample2Entity findById(Long id) {
    return new Sample2Entity(id, "Apple");
  }
}