13 lines
308 B
Java
13 lines
308 B
Java
package com.xkrs.microservice.dao;
|
|
|
|
import com.xkrs.microservice.model.entity.DicLandClassifyEntity;
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
|
/**
|
|
* DicLandClassifyDao
|
|
* @author tajochen
|
|
*/
|
|
public interface DicLandClassifyDao extends JpaRepository<DicLandClassifyEntity,Integer> {
|
|
|
|
}
|