123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- package com.huimv.sj.dao;
- import com.huimv.busi.tjfx.dto.HycdrzzDTO;
- import com.huimv.sj.dataobject.SjGttzzz;
- import com.huimv.sj.dataobject.SjGttzzzExample;
- import java.util.List;
- import java.util.Map;
- public interface SjGttzzzDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_gttzzz
- *
- * @ibatorgenerated Wed Nov 04 09:48:28 CST 2015
- */
- int countByExample(SjGttzzzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_gttzzz
- *
- * @ibatorgenerated Wed Nov 04 09:48:28 CST 2015
- */
- int deleteByExample(SjGttzzzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_gttzzz
- *
- * @ibatorgenerated Wed Nov 04 09:48:28 CST 2015
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_gttzzz
- *
- * @ibatorgenerated Wed Nov 04 09:48:28 CST 2015
- */
- void insert(SjGttzzz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_gttzzz
- *
- * @ibatorgenerated Wed Nov 04 09:48:28 CST 2015
- */
- void insertSelective(SjGttzzz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_gttzzz
- *
- * @ibatorgenerated Wed Nov 04 09:48:28 CST 2015
- */
- List<SjGttzzz> selectByExample(SjGttzzzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_gttzzz
- *
- * @ibatorgenerated Wed Nov 04 09:48:28 CST 2015
- */
- SjGttzzz selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_gttzzz
- *
- * @ibatorgenerated Wed Nov 04 09:48:28 CST 2015
- */
- int updateByExampleSelective(SjGttzzz record, SjGttzzzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_gttzzz
- *
- * @ibatorgenerated Wed Nov 04 09:48:28 CST 2015
- */
- int updateByExample(SjGttzzz record, SjGttzzzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_gttzzz
- *
- * @ibatorgenerated Wed Nov 04 09:48:28 CST 2015
- */
- int updateByPrimaryKeySelective(SjGttzzz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_gttzzz
- *
- * @ibatorgenerated Wed Nov 04 09:48:28 CST 2015
- */
- int updateByPrimaryKey(SjGttzzz record);
-
- List<HycdrzzDTO> getHycdrzzByParam(Map<String, Object> param) throws Exception;
- }
|