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