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 { /** * ��ȡ�������� * @return */ List findAll(); /** * ����ɸѡ������ȡ���� * @param BisInspRssfdrRgstrImplmtParam * @return */ int selectCount(BisInspRssfdrRgstrImplmtParam bisInspRssfdrRgstrImplmtParam); /** * ���������޸���Ϣ * @param BisInspRssfdrRgstrImplmtParam * @return */ int updateBy(BisInspRssfdrRgstrImplmtParam bisInspRssfdrRgstrImplmtParam); }