123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- package com.huimv.da.dao;
- import com.huimv.busi.da.dto.DaDwsDTO;
- import com.huimv.da.dataobject.DaLqwhxx;
- import com.huimv.da.dataobject.DaLqwhxxExample;
- import java.util.List;
- public interface DaLqwhxxDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_lqwhxx
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int countByExample(DaLqwhxxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_lqwhxx
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int deleteByExample(DaLqwhxxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_lqwhxx
- *
- * @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_lqwhxx
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- void insert(DaLqwhxx record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_lqwhxx
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- void insertSelective(DaLqwhxx record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_lqwhxx
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- List<DaLqwhxx> selectByExample(DaLqwhxxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_lqwhxx
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- DaLqwhxx selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_lqwhxx
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int updateByExampleSelective(DaLqwhxx record, DaLqwhxxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_lqwhxx
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int updateByExample(DaLqwhxx record, DaLqwhxxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_lqwhxx
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int updateByPrimaryKeySelective(DaLqwhxx record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_lqwhxx
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int updateByPrimaryKey(DaLqwhxx record);
-
- /**
- * 选择栏期维护列表
- */
- List<DaLqwhxx> selectMCZSLQLQWHByExample(DaLqwhxxExample example);
-
- /**
- * 计算动物数量
- */
- DaDwsDTO selectDwsFromDaLqwhxxByLqid(Integer lqid);
-
- /**
- * 根据lqid和发生时间计算动物数量
- * @param record
- * @return
- */
- DaDwsDTO selectDwsFromDaLqwhxxByLqidAndFssj(DaLqwhxx record);
-
- /**
- * 选择栏期维护
- */
- DaLqwhxx selectDaLqwhxxByLqid(Integer lqid);
-
- /**
- * 更新栏期维护
- */
- int updateZlsByDaLqwhxxId(Integer id);
- }
|