PRAPRO2/src/main/java/com/example/prapro2spring/service/OccupationLogDTOService.java

9 lines
308 B
Java

package com.example.prapro2spring.service;
import com.example.prapro2spring.dto.OccupationLogDTO;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Service;
@Service
public interface OccupationLogDTOService extends JpaRepository<OccupationLogDTO, Long> {
}