| 123456789101112131415161718192021222324252627282930313233343536373839 |
- 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<BisInspWtuntRgstrSteelReo, BisInspWtuntRgstrSteelReoParam> {
- /**
- * ��ȡ��������
- *
- * @return
- */
- List<BisInspWtuntRgstrSteelReo> findAll();
- /**
- * ����ɸѡ������ȡ����
- *
- * @param BisInspWtuntRgstrSteelReoParam
- * @return
- */
- int selectCount(BisInspWtuntRgstrSteelReoParam bisInspWtuntRgstrSteelReoParam);
- /**
- * ������������Ϣ
- *
- * @param BisInspWtuntRgstrSteelReoParam
- * @return
- */
- int updateBy(BisInspWtuntRgstrSteelReoParam bisInspWtuntRgstrSteelReoParam);
- }
|