123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- package com.huimv.da.dao;
- import com.huimv.busi.base.dto.ResponseBean;
- import com.huimv.da.dataobject.DaZsjk;
- import com.huimv.da.dataobject.DaZsjkExample;
- import com.huimv.web.base.PageBean;
- import java.util.List;
- import java.util.Map;
- public interface DaZsjkDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsjk
- *
- * @ibatorgenerated Tue Jan 20 15:15:49 CST 2015
- */
- int countByExample(DaZsjkExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsjk
- *
- * @ibatorgenerated Tue Jan 20 15:15:49 CST 2015
- */
- int deleteByExample(DaZsjkExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsjk
- *
- * @ibatorgenerated Tue Jan 20 15:15:49 CST 2015
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsjk
- *
- * @ibatorgenerated Tue Jan 20 15:15:49 CST 2015
- */
- void insert(DaZsjk record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsjk
- *
- * @ibatorgenerated Tue Jan 20 15:15:49 CST 2015
- */
- void insertSelective(DaZsjk record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsjk
- *
- * @ibatorgenerated Tue Jan 20 15:15:49 CST 2015
- */
- List<DaZsjk> selectByExample(DaZsjkExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsjk
- *
- * @ibatorgenerated Tue Jan 20 15:15:49 CST 2015
- */
- DaZsjk selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsjk
- *
- * @ibatorgenerated Tue Jan 20 15:15:49 CST 2015
- */
- int updateByExampleSelective(DaZsjk record, DaZsjkExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsjk
- *
- * @ibatorgenerated Tue Jan 20 15:15:49 CST 2015
- */
- int updateByExample(DaZsjk record, DaZsjkExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsjk
- *
- * @ibatorgenerated Tue Jan 20 15:15:49 CST 2015
- */
- int updateByPrimaryKeySelective(DaZsjk record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsjk
- *
- * @ibatorgenerated Tue Jan 20 15:15:49 CST 2015
- */
- int updateByPrimaryKey(DaZsjk record);
-
- ResponseBean getZsjkByParam(Map<String, Object> paramMap, PageBean pageBean) throws Exception;
- ResponseBean getZsjkBylqid(Map<String, Object> paramMap) throws Exception;
- DaZsjk getZsjkById(Map<String, Object> paramMap) throws Exception;
- }
|