This commit is contained in:
2025-05-07 16:45:44 +09:00
parent ab7c9c728d
commit d2f3ee1434
50 changed files with 314 additions and 73 deletions

View File

@ -0,0 +1,23 @@
package co.jp.app.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import co.jp.app.entity.PetEntity;
import co.jp.app.repository.uploadRepository;
@Service
public class uploadService {
@Autowired
private uploadRepository uploadDao;
public List<PetEntity> saveAll(Iterable<PetEntity> entities) {
return uploadDao.saveAll(entities);
}
}