文件名修正

This commit is contained in:
2025-05-08 11:26:28 +09:00
parent 011821c6be
commit 55997855f6
7 changed files with 29 additions and 27 deletions

View File

@ -4,16 +4,16 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import co.jp.app.entity.ErrorEntity;
import co.jp.app.repository.erraRepository;
import co.jp.app.repository.ErraRepository;
@Service
public class ErraService {
@Autowired
erraRepository erraDao;
ErraRepository erraRepository;
public ErrorEntity getStatusById(int id) {
return erraDao.getById(id);
return erraRepository.getById(id);
}
}