12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- package com.huimv.da.dao;
- import com.huimv.da.dataobject.DaQyda;
- import com.huimv.da.dataobject.DaQydaExample;
- import java.util.List;
- public interface DaQydaDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_qyda
- *
- * @ibatorgenerated Wed Sep 20 10:22:38 CST 2017
- */
- int countByExample(DaQydaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_qyda
- *
- * @ibatorgenerated Wed Sep 20 10:22:38 CST 2017
- */
- int deleteByExample(DaQydaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_qyda
- *
- * @ibatorgenerated Wed Sep 20 10:22:38 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_qyda
- *
- * @ibatorgenerated Wed Sep 20 10:22:38 CST 2017
- */
- void insert(DaQyda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_qyda
- *
- * @ibatorgenerated Wed Sep 20 10:22:38 CST 2017
- */
- void insertSelective(DaQyda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_qyda
- *
- * @ibatorgenerated Wed Sep 20 10:22:38 CST 2017
- */
- List<DaQyda> selectByExample(DaQydaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_qyda
- *
- * @ibatorgenerated Wed Sep 20 10:22:38 CST 2017
- */
- DaQyda selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_qyda
- *
- * @ibatorgenerated Wed Sep 20 10:22:38 CST 2017
- */
- int updateByExampleSelective(DaQyda record, DaQydaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_qyda
- *
- * @ibatorgenerated Wed Sep 20 10:22:38 CST 2017
- */
- int updateByExample(DaQyda record, DaQydaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_qyda
- *
- * @ibatorgenerated Wed Sep 20 10:22:38 CST 2017
- */
- int updateByPrimaryKeySelective(DaQyda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_qyda
- *
- * @ibatorgenerated Wed Sep 20 10:22:38 CST 2017
- */
- int updateByPrimaryKey(DaQyda record);
-
- List<DaQyda> selectQydaListByMcid(int mcid);
- }
|