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 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 selectQydaListByMcid(int mcid); }