12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- package com.huimv.sj.dao;
- import com.huimv.sj.dataobject.SjScjfwjl;
- import com.huimv.sj.dataobject.SjScjfwjlExample;
- import java.util.List;
- public interface SjScjfwjlDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_scj_fwjl
- *
- * @ibatorgenerated Wed Dec 21 13:55:43 CST 2016
- */
- int countByExample(SjScjfwjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_scj_fwjl
- *
- * @ibatorgenerated Wed Dec 21 13:55:43 CST 2016
- */
- int deleteByExample(SjScjfwjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_scj_fwjl
- *
- * @ibatorgenerated Wed Dec 21 13:55:43 CST 2016
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_scj_fwjl
- *
- * @ibatorgenerated Wed Dec 21 13:55:43 CST 2016
- */
- void insert(SjScjfwjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_scj_fwjl
- *
- * @ibatorgenerated Wed Dec 21 13:55:43 CST 2016
- */
- void insertSelective(SjScjfwjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_scj_fwjl
- *
- * @ibatorgenerated Wed Dec 21 13:55:43 CST 2016
- */
- List<SjScjfwjl> selectByExample(SjScjfwjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_scj_fwjl
- *
- * @ibatorgenerated Wed Dec 21 13:55:43 CST 2016
- */
- SjScjfwjl selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_scj_fwjl
- *
- * @ibatorgenerated Wed Dec 21 13:55:43 CST 2016
- */
- int updateByExampleSelective(SjScjfwjl record, SjScjfwjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_scj_fwjl
- *
- * @ibatorgenerated Wed Dec 21 13:55:43 CST 2016
- */
- int updateByExample(SjScjfwjl record, SjScjfwjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_scj_fwjl
- *
- * @ibatorgenerated Wed Dec 21 13:55:43 CST 2016
- */
- int updateByPrimaryKeySelective(SjScjfwjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_scj_fwjl
- *
- * @ibatorgenerated Wed Dec 21 13:55:43 CST 2016
- */
- int updateByPrimaryKey(SjScjfwjl record);
-
- public void insertScjFwjlByParam(List<SjScjfwjl> paramMapList);
- }
|