AppFeatureDao.java 378 B

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