123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- 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<DaJqda> 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<String, Object> paramMap);
-
- /**
- * 获取最大JQID
- * @return
- */
- public String selectMaxJqid();
-
- public List<DaJqda> getJqdaByParam(Map<String, Object> paramMap);
-
- public int updateByXlh(String xlh);
- }
|