/* * Copyright 2010 The YAPULAN Software Foundation * * Licensed under the YAPULAN License, Version 2.0 (the "License"); */ package com.miniframe.system.model.dao; import com.ibatis.sqlmap.client.SqlMapClient; import com.miniframe.system.model.SysFunction; import com.miniframe.system.model.SysFunctionSQLBuilder; import java.sql.SQLException; import java.util.List; public class SysFunctionDAOImpl implements SysFunctionDAO { /** * 功能信息表 : 功能信息表 * @generated */ private SqlMapClient sqlMapClient; /** * @generated */ public SysFunctionDAOImpl(SqlMapClient sqlMapClient) { super(); this.sqlMapClient = sqlMapClient; } /** * 获取记录行数 * @generated */ public int countByExample(SysFunctionSQLBuilder example) throws SQLException { Integer count = (Integer) sqlMapClient.queryForObject("sys_function.countByExample", example); return count; } /** * 条件删除 * @generated */ public int deleteByExample(SysFunctionSQLBuilder example) throws SQLException { int rows = sqlMapClient.delete("sys_function.deleteByExample", example); return rows; } /** * 根据主键删除 * @generated */ public int deleteByPrimaryKey(String functionid) throws SQLException { SysFunction _key = new SysFunction(); _key.setFunctionid(functionid); int rows = sqlMapClient.delete("sys_function.deleteByPrimaryKey", _key); return rows; } /** * 插入,所有字段 * @generated */ public void insert(SysFunction record) throws SQLException { sqlMapClient.insert("sys_function.insert", record); } /** * 动态插入,忽略空字段 * @generated */ public void insertSelective(SysFunction record) throws SQLException { sqlMapClient.insert("sys_function.insertSelective", record); } /** * 条件查询 * @generated */ @SuppressWarnings("unchecked") public List selectByExample(SysFunctionSQLBuilder example) throws SQLException { List list = sqlMapClient.queryForList("sys_function.selectByExample", example); return list; } /** * 根据主键查询 * @generated */ public SysFunction selectByPrimaryKey(String functionid) throws SQLException { SysFunction _key = new SysFunction(); _key.setFunctionid(functionid); Object obj = sqlMapClient.queryForObject("sys_function.selectByPrimaryKey", _key); if(!(obj instanceof SysFunction)) return null; SysFunction record = (SysFunction) obj; return record; } /** * 动态修改,不包含空字段 * @generated */ public int updateByExampleSelective(SysFunction record, SysFunctionSQLBuilder example) throws SQLException { UpdateByExampleParms parms = new UpdateByExampleParms(record, example); int rows = sqlMapClient.update("sys_function.updateByExampleSelective", parms); return rows; } /** * 条件修改 * @generated */ public int updateByExample(SysFunction record, SysFunctionSQLBuilder example) throws SQLException { UpdateByExampleParms parms = new UpdateByExampleParms(record, example); int rows = sqlMapClient.update("sys_function.updateByExample", parms); return rows; } /** * 动态根据主键修改,为空字段不修改 * @generated */ public int updateByPrimaryKeySelective(SysFunction record) throws SQLException { int rows = sqlMapClient.update("sys_function.updateByPrimaryKeySelective", record); return rows; } /** * 根据主键修改 * @generated */ public int updateByPrimaryKey(SysFunction record) throws SQLException { int rows = sqlMapClient.update("sys_function.updateByPrimaryKey", record); return rows; } /** * 功能信息表 : 功能信息表 * @generated */ protected static class UpdateByExampleParms extends SysFunctionSQLBuilder { /** * 功能信息表 : 功能信息表 * @generated */ private Object record; /** * @generated */ public UpdateByExampleParms(Object record, SysFunctionSQLBuilder example) { super(example); this.record = record; } /** * @generated */ public Object getRecord() { return record; } } }