12345678910111213141516 |
- package com.yihu.ehr.basic.apps.dao;
- import com.yihu.ehr.basic.apps.model.AppFeature;
- import org.springframework.data.jpa.repository.JpaRepository;
- /**
- * AppApiFeature 操作接口。
- *
- * @author linz
- * @version 1.0
- * @created 2016年7月7日21:05:13
- */
- public interface AppFeatureDao extends JpaRepository<AppFeature, String> {
- void deleteByAppId(String appId);
- }
|