This commit is contained in:
xzb 2022-10-09 13:34:28 +08:00
parent df77cfcc24
commit 7c9e57cd16
10 changed files with 16 additions and 13 deletions

View File

@ -59,7 +59,7 @@ public class PaperApiTestController {
rt.setScore(2); rt.setScore(2);
rt.setType(PaperQType.GroupType.Common); rt.setType(PaperQType.GroupType.Common);
rt.setSubtype(PaperQType.SubType.Select); rt.setSubtype(PaperQType.SubType.Select);
rt.setSum(10); rt.setAmount(10);
List<String> tags = new ArrayList<>(); List<String> tags = new ArrayList<>();
tags.add("6"); tags.add("6");
tags.add("8"); tags.add("8");
@ -73,7 +73,7 @@ public class PaperApiTestController {
rt.setScore(2); rt.setScore(2);
rt.setType(PaperQType.GroupType.Common); rt.setType(PaperQType.GroupType.Common);
rt.setSubtype(PaperQType.SubType.Select); rt.setSubtype(PaperQType.SubType.Select);
rt.setSum(10); rt.setAmount(10);
List<String> tags = new ArrayList<>(); List<String> tags = new ArrayList<>();
tags.add("6"); tags.add("6");
tags.add("8"); tags.add("8");

View File

@ -36,7 +36,7 @@ public class CreatePaperRuleReqVo {
* 该类型题目数量 * 该类型题目数量
*/ */
@NotNull @NotNull
private Integer sum; private Integer amount;
/** /**
* 每题分值 * 每题分值

View File

@ -30,7 +30,8 @@ public class PaperCompositionVo {
/** /**
* 组织id * 组织id
*/ */
private String companyId; @JsonSerialize(using = ToStringSerializer.class)
private Long orgId;
/** /**
* 启用起始时间 * 启用起始时间

View File

@ -42,7 +42,7 @@ public class PaperRuleVo {
* 该类型题目数量 * 该类型题目数量
*/ */
@NotNull @NotNull
private Integer sum; private Integer amount;
/** /**
* 每题分值 * 每题分值

View File

@ -28,7 +28,8 @@ public class PaperUserQuestionVo {
/** /**
* 组织id * 组织id
*/ */
private String companyId; @JsonSerialize(using = ToStringSerializer.class)
private Long orgId;
/** /**
* 试题类型1-理论题2-实训题 * 试题类型1-理论题2-实训题

View File

@ -36,7 +36,8 @@ public class PaperUserVo {
/** /**
* 组织id * 组织id
*/ */
private String companyId; @JsonSerialize(using = ToStringSerializer.class)
private Long orgId;
/** /**
* 用户最终得分 * 用户最终得分

View File

@ -14,7 +14,7 @@ public class PaperCompositionConvertor {
to.setId(from.getId()); to.setId(from.getId());
to.setName(from.getName()); to.setName(from.getName());
to.setProfile(from.getProfile()); to.setProfile(from.getProfile());
to.setCompanyId(from.getCompanyId()); to.setOrgId(from.getOrgId());
to.setStartTime(from.getStartTime()); to.setStartTime(from.getStartTime());
to.setEndTime(from.getEndTime()); to.setEndTime(from.getEndTime());
to.setValidDuration(from.getValidDuration()); to.setValidDuration(from.getValidDuration());

View File

@ -19,7 +19,7 @@ public class PaperRuleConvertor {
to.setSubtype(PaperQType.SubType.getItem(from.getSubtype())); to.setSubtype(PaperQType.SubType.getItem(from.getSubtype()));
to.setTags(JsonUtils.readCollection(from.getTags(),ArrayList.class,String.class)); to.setTags(JsonUtils.readCollection(from.getTags(),ArrayList.class,String.class));
to.setScore(from.getScore()); to.setScore(from.getScore());
to.setSum(from.getSum()); to.setAmount(from.getAmount());
return to; return to;
} }
@ -35,7 +35,7 @@ public class PaperRuleConvertor {
to.setTags(JsonUtils.writeValueAsString(new ArrayList<String>())); to.setTags(JsonUtils.writeValueAsString(new ArrayList<String>()));
} }
to.setScore(from.getScore()); to.setScore(from.getScore());
to.setSum(from.getSum()); to.setAmount(from.getAmount());
return to; return to;
} }
@ -50,7 +50,7 @@ public class PaperRuleConvertor {
to.setTags(JsonUtils.writeValueAsString(new ArrayList<String>())); to.setTags(JsonUtils.writeValueAsString(new ArrayList<String>()));
} }
to.setScore(from.getScore()); to.setScore(from.getScore());
to.setSum(from.getSum()); to.setAmount(from.getAmount());
return to; return to;
} }
} }

View File

@ -10,7 +10,7 @@ public class PaperUserConvertor {
to.setId(from.getId()); to.setId(from.getId());
to.setUserId(from.getUserId()); to.setUserId(from.getUserId());
to.setPcId(from.getPcId()); to.setPcId(from.getPcId());
to.setCompanyId(from.getCompanyId()); to.setOrgId(from.getOrgId());
to.setScore(from.getScore()); to.setScore(from.getScore());
to.setStartTime(from.getStartTime()); to.setStartTime(from.getStartTime());
to.setEndTime(from.getEndTime()); to.setEndTime(from.getEndTime());

View File

@ -10,7 +10,7 @@ public class PaperUserQuestionConvertor {
PaperUserQuestionVo to = new PaperUserQuestionVo(); PaperUserQuestionVo to = new PaperUserQuestionVo();
to.setId(from.getId()); to.setId(from.getId());
to.setPuId(from.getPuId()); to.setPuId(from.getPuId());
to.setCompanyId(from.getCompanyId()); to.setOrgId(from.getOrgId());
to.setType(PaperQType.GroupType.getItem(from.getType())); to.setType(PaperQType.GroupType.getItem(from.getType()));
to.setQuestionId(from.getQuestionId()); to.setQuestionId(from.getQuestionId());
to.setState(PaperQuestionState.getItem(from.getState())); to.setState(PaperQuestionState.getItem(from.getState()));