| | |
| | | private final IEnforceComplaintLogService complaintLogService; |
| | | private final IEnforceEvaluateLogService evaluateLogService; |
| | | private final YPSmsService smsService; |
| | | private final EnforceOrderMapper orderMapper; |
| | | |
| | | /** |
| | | * 通用列表-无权限 |
| | |
| | | QueryWrapper<EnforceOrder> qw = getQw(bo); |
| | | List<EnforceOrder> list = this.list(qw); |
| | | return Convert.toList(EnforceOrderVo.class , list); |
| | | } |
| | | |
| | | @Override |
| | | public Integer getDistinctCompanyNum() { |
| | | return orderMapper.getDistinctCompanyNum(); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (one!=null){ |
| | | String questionStatic = one.getQuestionStatic(); |
| | | if (StringUtils.isNotEmpty(questionStatic)){ |
| | | EnforceEvaluateVo evaluateVo = Convert.convert(EnforceEvaluateVo.class, one); |
| | | try { |
| | | EnforceEvaluateVo evaluateVo = JsonUtils.jsonToPojo(questionStatic, EnforceEvaluateVo.class); |
| | | vo.setEvaluateVo(evaluateVo); |
| | | List<EnforceEvaluateQuestion> questions = JsonUtils.jsonToList(questionStatic, EnforceEvaluateQuestion.class); |
| | | evaluateVo.setQuestionList(questions); |
| | | } catch (Exception e) { |
| | | throw new BaseException("评价问券解析异常!"); |
| | | } |
| | | vo.setEvaluateVo(evaluateVo); |
| | | } |
| | | } |
| | | } |