ParamJsonApiGatewayRepository.java 260 Bytes
Newer Older
akbar fauzi's avatar
akbar fauzi committed
1 2 3 4 5 6 7 8 9
package com.eksad.masterdata.repository;

import jakarta.transaction.Transactional;
import org.springframework.stereotype.Repository;

@Repository
@Transactional
public interface ParamJsonApiGatewayRepository extends GenericRepository<ParamJsonApiGateway> {
}