12345678910111213141516 |
- package com.yihu.ehr.basic.apps.dao;
- import com.yihu.ehr.basic.apps.model.AppApiResponse;
- import org.springframework.data.jpa.repository.JpaRepository;
- /**
- * AppApiResponse 操作接口。
- *
- * @author linz
- * @version 1.0
- * @created 2015.12.16 15:10
- */
- public interface AppApiResponseDao extends JpaRepository<AppApiResponse, Integer> {
- void deleteByAppApiId(Integer id);
- }
|