[修改]实训结束后的评分删除多余的memberId字段;查询实训按id逆序排列
All checks were successful
CI / Docker-Build (push) Successful in 2m13s
All checks were successful
CI / Docker-Build (push) Successful in 2m13s
This commit is contained in:
parent
9c9e7c60e3
commit
f57952b755
@ -124,8 +124,7 @@ public class TrainingV2PublishController {
|
|||||||
*/
|
*/
|
||||||
@PostMapping("/infos")
|
@PostMapping("/infos")
|
||||||
public List<PublishedTraining2InfoRspVo> findTrainingListInfos(
|
public List<PublishedTraining2InfoRspVo> findTrainingListInfos(
|
||||||
@RequestBody PublishedTrainingListRspVo vo
|
@RequestBody PublishedTrainingListRspVo vo,
|
||||||
,
|
|
||||||
@RequestAttribute(name = AuthenticateInterceptor.LOGIN_INFO_KEY) LoginUserInfoVO loginUserInfoVO) {
|
@RequestAttribute(name = AuthenticateInterceptor.LOGIN_INFO_KEY) LoginUserInfoVO loginUserInfoVO) {
|
||||||
//只查询以上架
|
//只查询以上架
|
||||||
vo.setState(BusinessConsts.STATUS_USE_INT);
|
vo.setState(BusinessConsts.STATUS_USE_INT);
|
||||||
|
@ -380,9 +380,7 @@ public class Training2PublishService {
|
|||||||
if (reqVO.getType() != null) {
|
if (reqVO.getType() != null) {
|
||||||
or.andTypeEqualTo(reqVO.getType().value());
|
or.andTypeEqualTo(reqVO.getType().value());
|
||||||
}
|
}
|
||||||
// if(reqVO.getOrgId() !=null){
|
example.setOrderByClause("id desc");
|
||||||
// or.andOrgIdNotEqualTo(reqVO.getOrgId());
|
|
||||||
// }
|
|
||||||
List<PublishedTraining2> list = this.publishedDao.selectByExample(example);
|
List<PublishedTraining2> list = this.publishedDao.selectByExample(example);
|
||||||
if (CollectionUtils.isEmpty(list)) {
|
if (CollectionUtils.isEmpty(list)) {
|
||||||
return List.of();
|
return List.of();
|
||||||
|
@ -328,7 +328,6 @@ public class Training2Service {
|
|||||||
// .filter(s -> Objects.equals(s.getSimulationMember().getId(), member.getId()))
|
// .filter(s -> Objects.equals(s.getSimulationMember().getId(), member.getId()))
|
||||||
.map(step -> {
|
.map(step -> {
|
||||||
PaperTrainAnswerDetail detail = new PaperTrainAnswerDetail();
|
PaperTrainAnswerDetail detail = new PaperTrainAnswerDetail();
|
||||||
detail.setMemberId(step.getSimulationMember().getId());
|
|
||||||
detail.setStepId(step.getId());
|
detail.setStepId(step.getId());
|
||||||
detail.setHaveRule(scoreMap.containsKey(step.getId()));
|
detail.setHaveRule(scoreMap.containsKey(step.getId()));
|
||||||
detail.setRuleScore(scoreMap.get(step.getId()));
|
detail.setRuleScore(scoreMap.get(step.getId()));
|
||||||
|
@ -40,12 +40,6 @@ public class PaperTrainAnswerDetail {
|
|||||||
*/
|
*/
|
||||||
private List<TrainOperations> clientOperations;
|
private List<TrainOperations> clientOperations;
|
||||||
|
|
||||||
/**
|
|
||||||
* 步骤对应的成员的id
|
|
||||||
*/
|
|
||||||
private String memberId;
|
|
||||||
|
|
||||||
|
|
||||||
public static class TrainOperations extends Operation2VO.ClientOperation2VO {
|
public static class TrainOperations extends Operation2VO.ClientOperation2VO {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user