| 123456789101112 |
- package cn.com.goldenwater.dcproj.dao;
- import cn.com.goldenwater.core.persistence.CrudDao;
- import cn.com.goldenwater.dcproj.model.BisInspEfpRgstrPlanCompl;
- import cn.com.goldenwater.dcproj.param.BisInspEfpRgstrPlanComplParam;
- import org.springframework.stereotype.Repository;
- @Repository
- public interface BisInspEfpRgstrPlanComplDao extends CrudDao<BisInspEfpRgstrPlanCompl, BisInspEfpRgstrPlanComplParam> {
- }
|