package com.huimv.xt.dao; import com.huimv.xt.dataobject.XtLypz; import com.huimv.xt.dataobject.XtLypzExample; import java.util.List; import java.util.Map; public interface XtLypzDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_lypz * * @ibatorgenerated Mon May 30 09:08:48 CST 2016 */ int countByExample(XtLypzExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_lypz * * @ibatorgenerated Mon May 30 09:08:48 CST 2016 */ int deleteByExample(XtLypzExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_lypz * * @ibatorgenerated Mon May 30 09:08:48 CST 2016 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_lypz * * @ibatorgenerated Mon May 30 09:08:48 CST 2016 */ void insert(XtLypz record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_lypz * * @ibatorgenerated Mon May 30 09:08:48 CST 2016 */ void insertSelective(XtLypz record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_lypz * * @ibatorgenerated Mon May 30 09:08:48 CST 2016 */ List selectByExample(XtLypzExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_lypz * * @ibatorgenerated Mon May 30 09:08:48 CST 2016 */ XtLypz selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_lypz * * @ibatorgenerated Mon May 30 09:08:48 CST 2016 */ int updateByExampleSelective(XtLypz record, XtLypzExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_lypz * * @ibatorgenerated Mon May 30 09:08:48 CST 2016 */ int updateByExample(XtLypz record, XtLypzExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_lypz * * @ibatorgenerated Mon May 30 09:08:48 CST 2016 */ int updateByPrimaryKeySelective(XtLypz record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_lypz * * @ibatorgenerated Mon May 30 09:08:48 CST 2016 */ int updateByPrimaryKey(XtLypz record); /** * 插入蓝牙配置 * @param paramMapList */ public void insertLypzListByParam(List paramMapList); /** * 获取蓝牙配置 * @param paramMap * @return */ public List selectLypzByParam(Map paramMap); }