package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.model.BisInspWtuntRgstrSteelReo; import cn.com.goldenwater.dcproj.param.BisInspWtuntRgstrSteelReoParam; import cn.com.goldenwater.core.persistence.CrudDao; import org.springframework.stereotype.Repository; import java.util.List; /** * @author lune * @date 2020-8-17 */ @Repository public interface BisInspWtuntRgstrSteelReoDao extends CrudDao { /** * ��ȡ�������� * * @return */ List findAll(); /** * ����ɸѡ������ȡ���� * * @param BisInspWtuntRgstrSteelReoParam * @return */ int selectCount(BisInspWtuntRgstrSteelReoParam bisInspWtuntRgstrSteelReoParam); /** * ���������޸���Ϣ * * @param BisInspWtuntRgstrSteelReoParam * @return */ int updateBy(BisInspWtuntRgstrSteelReoParam bisInspWtuntRgstrSteelReoParam); }