123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- package com.huimv.da.dao;
- import java.util.List;
- import java.util.Map;
- import com.huimv.busi.da.dto.DaLqdaDTO;
- import com.huimv.busi.da.dto.DaSlxxDTO;
- import com.huimv.busi.da.dto.DaZsdaDTO;
- import com.huimv.da.dataobject.DaLqda;
- import com.huimv.da.dataobject.DaLqdaExample;
- public interface DaLqdaDAO {
- /**
- * This method was generated by Apache iBATIS ibator. This method
- * corresponds to the database table da_lqda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int countByExample(DaLqdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator. This method
- * corresponds to the database table da_lqda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int deleteByExample(DaLqdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator. This method
- * corresponds to the database table da_lqda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator. This method
- * corresponds to the database table da_lqda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- void insert(DaLqda record);
- /**
- * This method was generated by Apache iBATIS ibator. This method
- * corresponds to the database table da_lqda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- void insertSelective(DaLqda record);
- /**
- * This method was generated by Apache iBATIS ibator. This method
- * corresponds to the database table da_lqda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- List<DaLqda> selectByExample(DaLqdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator. This method
- * corresponds to the database table da_lqda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- DaLqda selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator. This method
- * corresponds to the database table da_lqda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int updateByExampleSelective(DaLqda record, DaLqdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator. This method
- * corresponds to the database table da_lqda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int updateByExample(DaLqda record, DaLqdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator. This method
- * corresponds to the database table da_lqda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int updateByPrimaryKeySelective(DaLqda record);
- /**
- * This method was generated by Apache iBATIS ibator. This method
- * corresponds to the database table da_lqda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int updateByPrimaryKey(DaLqda record);
- List<DaLqdaDTO> selectMCZSLQDAByExample(DaLqdaExample example);
- int countMCZSLQDAByExample(DaLqdaExample example);
- DaLqdaDTO selectMCZSLQDAByPrimaryKey(Integer parseInt);
-
- List<DaLqda> selectLqdaByZsid(String zsid);
-
- List<DaSlxxDTO> selectMCZSLQSLByExample(DaLqdaExample example);
-
- List<DaZsdaDTO> selectZsdaDtoByParam(Map<String, Object> param);
-
- List<DaLqda> selectDqlq();
- }
|