/**
  * 字典类型名称是否存在。
  *
  * @param String 字典类型名称
  * @return boolean
  */
 public boolean checkDicTypeDicTypeName(String dicTypeName) {
   boolean isExist = true;
   List list = dicTypeDao.checkDicTypeName(dicTypeName);
   if (list.size() > 0) {
     isExist = false;
   }
   return isExist;
 }