czt
2025-06-09 13b6ad41f0b057f8405f7976a990e9057547443a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.fzzy.igds.dzhwk.service.repository;
 
import com.fzzy.igds.dzhwk.domain.InoutDepotRecord;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.stereotype.Service;
 
/**
 * @Description
 * @Author CZT
 * @Date 2025/06/05 10:36
 */
@Service
public interface InoutDepotRecordRepository extends JpaRepository<InoutDepotRecord, String>, JpaSpecificationExecutor<InoutDepotRecord> {
 
}