package com.huimv.da.dao; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.springframework.orm.ibatis.support.SqlMapClientDaoSupport; import com.huimv.busi.base.dto.ResponseBean; import com.huimv.busi.xt.constant.XtSqlMapConstant; import com.huimv.da.dataobject.DaSlda; import com.huimv.da.dataobject.DaSldaExample; import com.huimv.web.base.PageBean; public class DaSldaDAOImpl extends SqlMapClientDaoSupport implements DaSldaDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ public DaSldaDAOImpl() { super(); } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ public int countByExample(DaSldaExample example) { Integer count = (Integer) getSqlMapClientTemplate().queryForObject("da_slda.ibatorgenerated_countByExample", example); return count; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ public int deleteByExample(DaSldaExample example) { int rows = getSqlMapClientTemplate().delete("da_slda.ibatorgenerated_deleteByExample", example); return rows; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ public int deleteByPrimaryKey(Integer id) { DaSlda key = new DaSlda(); key.setId(id); int rows = getSqlMapClientTemplate().delete("da_slda.ibatorgenerated_deleteByPrimaryKey", key); return rows; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ public void insert(DaSlda record) { getSqlMapClientTemplate().insert("da_slda.ibatorgenerated_insert", record); } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ public void insertSelective(DaSlda record) { getSqlMapClientTemplate().insert("da_slda.ibatorgenerated_insertSelective", record); } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ @SuppressWarnings("unchecked") public List selectByExample(DaSldaExample example) { List list = getSqlMapClientTemplate().queryForList("da_slda.ibatorgenerated_selectByExample", example); return list; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ public DaSlda selectByPrimaryKey(Integer id) { DaSlda key = new DaSlda(); key.setId(id); DaSlda record = (DaSlda) getSqlMapClientTemplate().queryForObject("da_slda.ibatorgenerated_selectByPrimaryKey", key); return record; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ public int updateByExampleSelective(DaSlda record, DaSldaExample example) { UpdateByExampleParms parms = new UpdateByExampleParms(record, example); int rows = getSqlMapClientTemplate().update("da_slda.ibatorgenerated_updateByExampleSelective", parms); return rows; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ public int updateByExample(DaSlda record, DaSldaExample example) { UpdateByExampleParms parms = new UpdateByExampleParms(record, example); int rows = getSqlMapClientTemplate().update("da_slda.ibatorgenerated_updateByExample", parms); return rows; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ public int updateByPrimaryKeySelective(DaSlda record) { int rows = getSqlMapClientTemplate().update("da_slda.ibatorgenerated_updateByPrimaryKeySelective", record); return rows; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ public int updateByPrimaryKey(DaSlda record) { int rows = getSqlMapClientTemplate().update("da_slda.ibatorgenerated_updateByPrimaryKey", record); return rows; } /** * This class was generated by Apache iBATIS ibator. * This class corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ private static class UpdateByExampleParms extends DaSldaExample { private Object record; public UpdateByExampleParms(Object record, DaSldaExample example) { super(example); this.record = record; } @SuppressWarnings("unused") public Object getRecord() { return record; } } /** * 根据参数搜索DaSlda * * @return * @throws Exception */ @SuppressWarnings("unchecked") public ResponseBean selectDaSldaByParam(Map paramMap, PageBean pageBean) throws Exception { ResponseBean rb = new ResponseBean(); List daSldas = new ArrayList(); int count = (Integer) getSqlMapClientTemplate().queryForObject(XtSqlMapConstant.SQLMAP_COUNT_SLDA_BY_PARAM, paramMap); if(null != pageBean) { int startRecord = pageBean.getCurrentPageFirstRecord(); int endRecord = pageBean.getPageSize(); paramMap.put("startRecord", startRecord); paramMap.put("endRecord", endRecord); pageBean.setRecordCount(count); } else { paramMap.put("startRecord", 0); paramMap.put("endRecord", count); } daSldas = (List) getSqlMapClientTemplate().queryForList(XtSqlMapConstant.SQLMAP_SELECT_SLDA_BY_PARAM, paramMap); rb.setResult(daSldas); rb.setReturnCode(count); return rb; } }