@Override
  public Object appraisalOperate(JSONObject jsonAppraisalInfo) {
    // 判断对象是否有参数
    if (!CollectionUtils.isEmpty(jsonAppraisalInfo)) {
      // 获取命令信息
      JSONObject jsonCommandInfo = jsonAppraisalInfo.getJSONObject("commandInfo");
      if (CollectionUtils.isEmpty(jsonCommandInfo)) {
        throw new EnergyException("命令信息不能为空!");
      }
      String commandType = jsonCommandInfo.getString("commandType");
      if (StringUtils.isEmpty(commandType)) {
        throw new EnergyException("命令类型不能为空!");
      }

      String id = jsonAppraisalInfo.getString("id");
      if (StringUtils.isEmpty(id)) {
        throw new EnergyException("参数id不能为空!");
      }
      int type = jsonCommandInfo.getIntValue("commandType");
      // 获取当前用户
      WeixinUser weixinUser = SystemCacheUtil.getInstance().getCurrentUser();
      Appraisal currentAppraisal = appraisalDao.getAppraisalById(id);
      if (null == currentAppraisal) {
        throw new EnergyException(
            SpringContextUtil.getI18n("1002003", new String[] {"id", id}, null));
      }
      // 实体账户id
      if (Status.已评价.value().equals(currentAppraisal.getStatus())) {
        throw new EnergyException("当前评价已处理!");
      }
      switch (type) {
          // 提交评价
        case 1:
          // 获取问题列表
          String eaId = jsonAppraisalInfo.getString("eaId");
          if (StringUtils.isEmpty(eaId)) {
            throw new EnergyException(
                SpringContextUtil.getI18n("1002002", new String[] {"eaId", eaId}, null));
          }
          EntityAccount entityAccount = entityAccountService.getEntityAccountById(eaId);
          if (null == entityAccount) {
            throw new EnergyException(
                SpringContextUtil.getI18n("1002003", new String[] {"eaId", eaId}, null));
          }

          Score score = new Score();
          score.setAppraisalId(id);
          score.setRaterId(weixinUser.getUserid());
          score.setUserId(entityAccount.getAccountId());
          List<Score> scoreList = scoreService.getScore(score);
          if (!CollectionUtils.isEmpty(scoreList)) {
            throw new EnergyException("您已评价,不能重复评价!");
          }
          scoreList = generateProblemScore(jsonAppraisalInfo, id, weixinUser, entityAccount);
          if (!CollectionUtils.isEmpty(scoreList)) {
            scoreService.addScore(scoreList.toArray(new Score[] {}));
          }

          // 实体账户id
          if (!Status.评价中.value().equals(currentAppraisal.getStatus())) {
            Appraisal appraisal = new Appraisal();
            appraisal.setId(id);
            appraisal.setStatus(Status.评价中.value());
            appraisalDao.updateAppraisal(appraisal);
          }
          // 这里对每一个人评价进行标记 主要记录当前第几个人操作
          int appraiseTimes = entityAccount.getAppraiseTimes() + 1;
          entityAccount = new EntityAccount();
          entityAccount.setId(eaId);
          entityAccount.setAppraiseTimes(appraiseTimes);
          entityAccountService.updateEntityAccount(entityAccount);

          entityAccount = new EntityAccount();
          entityAccount.setEntityId(id);
          entityAccount.setPersonType(PersonType.PJ.value());
          // 获取总评价人数
          int count = (int) entityAccountService.getEntityAccountCount(entityAccount);
          // 查询所有带评价人 当前是否都已被评价
          entityAccount = new EntityAccount();
          entityAccount.setEntityId(id);
          entityAccount.setPersonType(PersonType.BPJ.value());
          List<EntityAccount> entityAccountList =
              entityAccountService.getEntityAccount(entityAccount);
          if (!CollectionUtils.isEmpty(entityAccountList)) {
            for (EntityAccount ea : entityAccountList) {
              if (ea.getAppraiseTimes() != count) {
                return null;
              }
            }
            Appraisal appraisal = new Appraisal();
            appraisal.setId(id);
            appraisal.setStatus(Status.已评价.value());
            appraisalDao.updateAppraisal(appraisal);
          }

          break;
          // 取消评价
        case 2:

          // 如果当前已被评价那么 禁止操作
          if (Status.未评价.value().equals(currentAppraisal.getStatus())) {
            // 被评价人 评价人 问题
            entityAccountService.deleteByEntityId(id);
            problemTemplateService.deleteByAppraisalId(id);
            appraisalDao.deleteAppraisalById(id);
          } else {
            throw new EnergyException("当前评价进行中不能操作!");
          }
          break;
        default:
          throw new EnergyException("无效操作!");
      }
    } else {
      LOGGER.warn("评价操作信息为空!");
    }
    return null;
  }