PdAttachmentRepository.java 211 Bytes
Newer Older
kangxiaoshan committed
1 2 3 4 5 6 7
package common.repository;

import common.model.PdAttachment;
import org.springframework.data.jpa.repository.JpaRepository;

public interface PdAttachmentRepository extends JpaRepository<PdAttachment, Long> {
}