123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package com.huimv.dp.dao;
- import java.util.List;
- import com.huimv.dp.dataobject.DpSjlrsy;
- import com.huimv.dp.dataobject.DpSjlrsyExample;
- public interface DpSjlrsyDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sy
- *
- * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
- */
- int countByExample(DpSjlrsyExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sy
- *
- * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
- */
- int deleteByExample(DpSjlrsyExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sy
- *
- * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sy
- *
- * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
- */
- void insert(DpSjlrsy record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sy
- *
- * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
- */
- void insertSelective(DpSjlrsy record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sy
- *
- * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
- */
- List<DpSjlrsy> selectByExample(DpSjlrsyExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sy
- *
- * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
- */
- DpSjlrsy selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sy
- *
- * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
- */
- int updateByExampleSelective(DpSjlrsy record, DpSjlrsyExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sy
- *
- * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
- */
- int updateByExample(DpSjlrsy record, DpSjlrsyExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sy
- *
- * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
- */
- int updateByPrimaryKeySelective(DpSjlrsy record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table dp_sjlr_sy
- *
- * @ibatorgenerated Fri Aug 02 14:27:27 CST 2019
- */
- int updateByPrimaryKey(DpSjlrsy record);
-
- //统计各项总和
- public DpSjlrsy getAllCount(String mcidlist);
- }
|