| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package cn.com.goldenwater.dcproj.dao;
- import cn.com.goldenwater.dcproj.model.BisInspWtuntRgstrSteel;
- import cn.com.goldenwater.dcproj.param.BisInspWtuntRgstrSteelParam;
- 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 BisInspWtuntRgstrSteelDao extends CrudDao<BisInspWtuntRgstrSteel, BisInspWtuntRgstrSteelParam> {
- /**
- * ��ȡ��������
- *
- * @return
- */
- List<BisInspWtuntRgstrSteel> findAll();
- /**
- * ����ɸѡ������ȡ����
- *
- * @param BisInspWtuntRgstrSteelParam
- * @return
- */
- int selectCount(BisInspWtuntRgstrSteelParam bisInspWtuntRgstrSteelParam);
- /**
- * ������������Ϣ
- *
- * @param BisInspWtuntRgstrSteelParam
- * @return
- */
- int updateBy(BisInspWtuntRgstrSteelParam bisInspWtuntRgstrSteelParam);
- }
|