| 123456789101112131415161718192021222324252627282930313233343536 |
- package cn.com.goldenwater.dcproj.dao;
- import cn.com.goldenwater.core.persistence.CrudDao;
- import cn.com.goldenwater.dcproj.model.BisInspRssfdrRgstrImplmt;
- import cn.com.goldenwater.dcproj.param.BisInspRssfdrRgstrImplmtParam;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * @author lune
- * @date 2020-9-11
- */
- @Repository
- public interface BisInspRssfdrRgstrImplmtDao extends CrudDao<BisInspRssfdrRgstrImplmt, BisInspRssfdrRgstrImplmtParam> {
- /**
- * ��ȡ��������
- * @return
- */
- List<BisInspRssfdrRgstrImplmt> findAll();
- /**
- * ����ɸѡ������ȡ����
- * @param BisInspRssfdrRgstrImplmtParam
- * @return
- */
- int selectCount(BisInspRssfdrRgstrImplmtParam bisInspRssfdrRgstrImplmtParam);
- /**
- * ������������Ϣ
- * @param BisInspRssfdrRgstrImplmtParam
- * @return
- */
- int updateBy(BisInspRssfdrRgstrImplmtParam bisInspRssfdrRgstrImplmtParam);
- }
|