1234567891011121314151617 |
- package com.yihu.ehr.basic.apps.dao;
- import com.yihu.ehr.basic.apps.model.AppsRelation;
- import org.springframework.data.jpa.repository.JpaRepository;
- import java.util.List;
- /**
- * App 操作接口。
- *
- * @author Sand
- * @version 1.0
- * @created 2015.12.16 15:10
- */
- public interface AppsRelationDao extends JpaRepository<AppsRelation, String> {
- }
|