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 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 paramMap, PageBean pageBean) throws Exception; ResponseBean getZsjkBylqid(Map paramMap) throws Exception; DaZsjk getZsjkById(Map paramMap) throws Exception; }