/**
  * This method was generated by Apache iBATIS ibator. This method corresponds to the database
  * table sys_dictionary
  *
  * @ibatorgenerated Thu Sep 20 01:29:51 CST 2012
  */
 public int deleteByPrimaryKey(Integer id) {
   SysDictionary key = new SysDictionary();
   key.setId(id);
   int rows =
       getSqlMapClientTemplate().delete("sys_dictionary.ibatorgenerated_deleteByPrimaryKey", key);
   return rows;
 }
 /**
  * This method was generated by Apache iBATIS ibator. This method corresponds to the database
  * table sys_dictionary
  *
  * @ibatorgenerated Thu Sep 20 01:29:51 CST 2012
  */
 public SysDictionary selectByPrimaryKey(Integer id) {
   SysDictionary key = new SysDictionary();
   key.setId(id);
   SysDictionary record =
       (SysDictionary)
           getSqlMapClientTemplate()
               .queryForObject("sys_dictionary.ibatorgenerated_selectByPrimaryKey", key);
   return record;
 }