123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- package com.huimv.da.dao;
- import com.huimv.busi.base.dto.ResponseBean;
- import com.huimv.busi.da.dto.DaZsdaDTO;
- import com.huimv.da.dataobject.DaZsda;
- import com.huimv.da.dataobject.DaZsdaExample;
- import com.huimv.web.base.PageBean;
- import java.util.List;
- import java.util.Map;
- public interface DaZsdaDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int countByExample(DaZsdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int deleteByExample(DaZsdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsda
- *
- * @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_zsda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- void insert(DaZsda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- void insertSelective(DaZsda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- List<DaZsda> selectByExample(DaZsdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- DaZsda selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int updateByExampleSelective(DaZsda record, DaZsdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int updateByExample(DaZsda record, DaZsdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int updateByPrimaryKeySelective(DaZsda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zsda
- *
- * @ibatorgenerated Fri May 23 16:56:30 CST 2014
- */
- int updateByPrimaryKey(DaZsda record);
-
- DaZsda selectZsdaByParam(DaZsda daZsda);
-
- int countZsdaByParam(DaZsda daZsda);
-
- ResponseBean getZsdaByParam(Map<String, Object> paramMap, PageBean pageBean) throws Exception;
-
- DaZsda getZsdaById(Map<String, Object> paramMap) throws Exception;
-
- List<DaZsda> selectZSMCdaByParam(Map<String, Object> paramMap, PageBean pageBean);
-
- public DaZsda getZsdaByJqid(Map<String, Object> paramMap) throws Exception;
-
- public List<DaZsda> getZsdaListByParam(Map<String, Object> paramMap);
-
- /**
- * 获取临时排序的猪舍列表
- */
- public String getZsidListByParam(Map<String, Object> paramMap);
-
- /**
- * 获取猪舍列表
- */
- public List<DaZsda> getZsxxListByParam(Map<String, Object> paramMap);
-
- public List<DaZsdaDTO> getZsdtoByXlh(Map<String, Object> paramMap);
-
- /**
- * 统计表下有几个猪舍
- */
- public int countZs(Map<String, Object> paramMap);
- /**
- * 获取临时排序的猪舍列表 只有普通舍和测定舍
- */
- public String getPtZsidListByParam(Map<String, Object> paramMap);
-
-
- /**
- * 批量更新猪舍区域
- */
- public void updateZsqyByParam(List<DaZsda> paramMapList);
-
- /**
- * 根据JQID查询当前栏期
- * @param jqid
- * @return DQLQ
- */
- public String selectDqlqfromzsdaAndJqdaByJqid(String jqid);
-
- public List<DaZsda> selectZsxxByDgds(Map<String, Object> paramMap);
-
- public List<DaZsda> selectZsxxByLxds(Map<String, Object> paramMap);
- }
|