123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- 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<XtLypz> 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<XtLypz> paramMapList);
-
- /**
- * 获取蓝牙配置
- * @param paramMap
- * @return
- */
- public List<XtLypz> selectLypzByParam(Map<String, Object> paramMap);
- }
|