package com.yihu.ehr.basic.apps.dao; import com.yihu.ehr.basic.apps.model.AppApiParameter; import org.springframework.data.jpa.repository.JpaRepository; /** * AppApiParameter 操作接口。 * * @author linz * @version 1.0 * @created 2016年7月7日21:05:41 */ public interface AppApiParameterDao extends JpaRepository { void deleteByAppApiId(Integer id); }