1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package com.huimv.sj.dao;
- import com.huimv.sj.dataobject.SjQkyw;
- import com.huimv.sj.dataobject.SjQkywExample;
- import java.util.List;
- public interface SjQkywDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qk_yw
- *
- * @ibatorgenerated Thu Aug 30 13:20:39 CST 2018
- */
- int countByExample(SjQkywExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qk_yw
- *
- * @ibatorgenerated Thu Aug 30 13:20:39 CST 2018
- */
- int deleteByExample(SjQkywExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qk_yw
- *
- * @ibatorgenerated Thu Aug 30 13:20:39 CST 2018
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qk_yw
- *
- * @ibatorgenerated Thu Aug 30 13:20:39 CST 2018
- */
- void insert(SjQkyw record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qk_yw
- *
- * @ibatorgenerated Thu Aug 30 13:20:39 CST 2018
- */
- void insertSelective(SjQkyw record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qk_yw
- *
- * @ibatorgenerated Thu Aug 30 13:20:39 CST 2018
- */
- List<SjQkyw> selectByExample(SjQkywExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qk_yw
- *
- * @ibatorgenerated Thu Aug 30 13:20:39 CST 2018
- */
- SjQkyw selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qk_yw
- *
- * @ibatorgenerated Thu Aug 30 13:20:39 CST 2018
- */
- int updateByExampleSelective(SjQkyw record, SjQkywExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qk_yw
- *
- * @ibatorgenerated Thu Aug 30 13:20:39 CST 2018
- */
- int updateByExample(SjQkyw record, SjQkywExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qk_yw
- *
- * @ibatorgenerated Thu Aug 30 13:20:39 CST 2018
- */
- int updateByPrimaryKeySelective(SjQkyw record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qk_yw
- *
- * @ibatorgenerated Thu Aug 30 13:20:39 CST 2018
- */
- int updateByPrimaryKey(SjQkyw record);
- }
|