123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- package com.huimv.cs.dao;
- import com.huimv.cs.dataobject.SjLqjl;
- import com.huimv.cs.dataobject.SjLqjlExample;
- import com.huimv.sj.dataobject.SjFwjl;
- import com.huimv.sj.dataobject.SjSscssj;
- import com.huimv.sj.dataobject.SjSshjkz;
- import com.huimv.xt.dataobject.XtFlzzd;
- import java.util.List;
- import java.util.Map;
- public interface SjLqjlDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_lqjl
- *
- * @ibatorgenerated Thu Oct 22 13:42:41 CST 2015
- */
- int countByExample(SjLqjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_lqjl
- *
- * @ibatorgenerated Thu Oct 22 13:42:41 CST 2015
- */
- int deleteByExample(SjLqjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_lqjl
- *
- * @ibatorgenerated Thu Oct 22 13:42:41 CST 2015
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_lqjl
- *
- * @ibatorgenerated Thu Oct 22 13:42:41 CST 2015
- */
- void insert(SjLqjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_lqjl
- *
- * @ibatorgenerated Thu Oct 22 13:42:41 CST 2015
- */
- void insertSelective(SjLqjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_lqjl
- *
- * @ibatorgenerated Thu Oct 22 13:42:41 CST 2015
- */
- List<SjLqjl> selectByExample(SjLqjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_lqjl
- *
- * @ibatorgenerated Thu Oct 22 13:42:41 CST 2015
- */
- SjLqjl selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_lqjl
- *
- * @ibatorgenerated Thu Oct 22 13:42:41 CST 2015
- */
- int updateByExampleSelective(SjLqjl record, SjLqjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_lqjl
- *
- * @ibatorgenerated Thu Oct 22 13:42:41 CST 2015
- */
- int updateByExample(SjLqjl record, SjLqjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_lqjl
- *
- * @ibatorgenerated Thu Oct 22 13:42:41 CST 2015
- */
- int updateByPrimaryKeySelective(SjLqjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_lqjl
- *
- * @ibatorgenerated Thu Oct 22 13:42:41 CST 2015
- */
- int updateByPrimaryKey(SjLqjl record);
-
- int selectCountScslxxByParam(Map<String, Object> searchParam);
-
- int selectCountScfwjlxxByParam(Map<String, Object> searchParam);
-
- int selectCountSchjkzxxByParam(Map<String, Object> searchParam);
-
- int countSjlqjlByParam(Map<String, Object> searchParam);
-
- List<SjLqjl> getSjlqjlListByParam(Map<String, Object> searchParam);
-
- List<SjSscssj> getScslxxListByParam(Map<String, Object> searchParam);
-
- List<SjFwjl> getScfwjlxxListByParam(Map<String, Object> searchParam);
-
- List<SjSshjkz> getSchjkzxxListByParam(Map<String, Object> searchParam);
-
- }
|