package com.huimv.da.dao; import java.util.List; import java.util.Map; import com.huimv.da.dataobject.DaJqda; import com.huimv.da.dataobject.DaJqdaExample; public interface DaJqdaDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_jqda * * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014 */ int countByExample(DaJqdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_jqda * * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014 */ int deleteByExample(DaJqdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_jqda * * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_jqda * * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014 */ void insert(DaJqda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_jqda * * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014 */ void insertSelective(DaJqda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_jqda * * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014 */ List selectByExample(DaJqdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_jqda * * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014 */ DaJqda selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_jqda * * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014 */ int updateByExampleSelective(DaJqda record, DaJqdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_jqda * * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014 */ int updateByExample(DaJqda record, DaJqdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_jqda * * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014 */ int updateByPrimaryKeySelective(DaJqda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_jqda * * @ibatorgenerated Wed Jul 30 10:53:58 CST 2014 */ int updateByPrimaryKey(DaJqda record); /** * 根据jqid选择当前栏期 */ int selectDqlqByParam(Map paramMap); /** * 获取最大JQID * @return */ public String selectMaxJqid(); public List getJqdaByParam(Map paramMap); public int updateByXlh(String xlh); }