1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package com.huimv.dp.dao;
- import com.huimv.dp.dataobject.DpSjlrsbbj;
- import com.huimv.dp.dataobject.DpSjlrsbbjExample;
- import java.util.List;
- public interface DpSjlrsbbjDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sbbj
- *
- * @ibatorgenerated Sun Jul 07 16:52:27 CST 2019
- */
- int countByExample(DpSjlrsbbjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sbbj
- *
- * @ibatorgenerated Sun Jul 07 16:52:27 CST 2019
- */
- int deleteByExample(DpSjlrsbbjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sbbj
- *
- * @ibatorgenerated Sun Jul 07 16:52:27 CST 2019
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sbbj
- *
- * @ibatorgenerated Sun Jul 07 16:52:27 CST 2019
- */
- void insert(DpSjlrsbbj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sbbj
- *
- * @ibatorgenerated Sun Jul 07 16:52:27 CST 2019
- */
- void insertSelective(DpSjlrsbbj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sbbj
- *
- * @ibatorgenerated Sun Jul 07 16:52:27 CST 2019
- */
- List<DpSjlrsbbj> selectByExample(DpSjlrsbbjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sbbj
- *
- * @ibatorgenerated Sun Jul 07 16:52:27 CST 2019
- */
- DpSjlrsbbj selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sbbj
- *
- * @ibatorgenerated Sun Jul 07 16:52:27 CST 2019
- */
- int updateByExampleSelective(DpSjlrsbbj record, DpSjlrsbbjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sbbj
- *
- * @ibatorgenerated Sun Jul 07 16:52:27 CST 2019
- */
- int updateByExample(DpSjlrsbbj record, DpSjlrsbbjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sbbj
- *
- * @ibatorgenerated Sun Jul 07 16:52:27 CST 2019
- */
- int updateByPrimaryKeySelective(DpSjlrsbbj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sbbj
- *
- * @ibatorgenerated Sun Jul 07 16:52:27 CST 2019
- */
- int updateByPrimaryKey(DpSjlrsbbj record);
-
- //统计各项总和
- public DpSjlrsbbj getAllCount(String mcidlist);
- }
|