123456789101112131415161718192021222324 |
- package com.yihu.ehr.basic.apps.dao;
- import com.yihu.ehr.basic.apps.model.AppApi;
- import org.springframework.data.jpa.repository.JpaRepository;
- import java.util.List;
- /**
- * AppApi 操作接口。
- *
- * @author linz
- * @version 1.0
- * @created 2016年7月7日21:05:46
- */
- public interface AppApiDao extends JpaRepository<AppApi, Integer> {
- List<AppApi> findByCategory(Integer categoryId);
- List<AppApi> findByName(String name);
- void deleteByAppId(String appId);
- List<AppApi> findByAppId(String appId);
- }
|