|
@@ -1,5 +1,6 @@
|
|
|
package com.xjrsoft.module.evaluate.service.impl;
|
|
package com.xjrsoft.module.evaluate.service.impl;
|
|
|
|
|
|
|
|
|
|
+import cn.dev33.satoken.stp.StpUtil;
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
@@ -19,6 +20,7 @@ import com.xjrsoft.module.evaluate.mapper.EvaluateManageItemMapper;
|
|
|
import com.xjrsoft.module.evaluate.mapper.EvaluateManageMapper;
|
|
import com.xjrsoft.module.evaluate.mapper.EvaluateManageMapper;
|
|
|
import com.xjrsoft.module.evaluate.mapper.EvaluateObjectMapper;
|
|
import com.xjrsoft.module.evaluate.mapper.EvaluateObjectMapper;
|
|
|
import com.xjrsoft.module.evaluate.service.IEvaluateManageService;
|
|
import com.xjrsoft.module.evaluate.service.IEvaluateManageService;
|
|
|
|
|
+import com.xjrsoft.module.evaluate.vo.EvaluateManageItemVo;
|
|
|
import com.xjrsoft.module.evaluate.vo.EvaluateManagePageVo;
|
|
import com.xjrsoft.module.evaluate.vo.EvaluateManagePageVo;
|
|
|
import com.xjrsoft.module.evaluate.vo.EvaluateWritePageVo;
|
|
import com.xjrsoft.module.evaluate.vo.EvaluateWritePageVo;
|
|
|
import com.xjrsoft.module.evaluate.vo.EvaluateWriteVo;
|
|
import com.xjrsoft.module.evaluate.vo.EvaluateWriteVo;
|
|
@@ -104,12 +106,22 @@ public class EvaluateManageServiceImpl extends MPJBaseServiceImpl<EvaluateManage
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
public Page<EvaluateWritePageVo> getMobilePage(Page<EvaluateWritePageDto> page, EvaluateWritePageDto dto) {
|
|
public Page<EvaluateWritePageVo> getMobilePage(Page<EvaluateWritePageDto> page, EvaluateWritePageDto dto) {
|
|
|
- return null;
|
|
|
|
|
|
|
+ return evaluateManageMapper.getMobilePage(page, dto);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
public EvaluateWriteVo getWriteInfo(Long id) {
|
|
public EvaluateWriteVo getWriteInfo(Long id) {
|
|
|
- return null;
|
|
|
|
|
|
|
+ return evaluateManageMapper.getWriteInfo(id);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public List<EvaluateManageItemVo> getItemList(Long id) {
|
|
|
|
|
+ return evaluateManageMapper.getItemList(id);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public List<EvaluateManageItemVo> getResultList(Long id) {
|
|
|
|
|
+ return evaluateManageMapper.getResultList(id, StpUtil.getLoginIdAsLong());
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|