文件名修正

This commit is contained in:
2025-05-07 17:56:35 +09:00
parent 20d270cd4d
commit 011821c6be
28 changed files with 84 additions and 61 deletions

View File

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