AppInfoRepository.java 345 Bytes
Newer Older
zhangxiaoyan committed
1 2 3 4 5 6 7 8 9 10 11 12
package common.repository;

import common.model.AppInfo;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;

/**
 * Created by zxy on 2017/12/26.
 */
public interface AppInfoRepository extends JpaRepository<AppInfo, Long>, JpaSpecificationExecutor<AppInfo>
{
}