paper
This commit is contained in:
parent
12f91ba58c
commit
df77cfcc24
@ -28,7 +28,7 @@ public class PaperApiTestController {
|
|||||||
CreatePaperCompositionReqVo rt = new CreatePaperCompositionReqVo();
|
CreatePaperCompositionReqVo rt = new CreatePaperCompositionReqVo();
|
||||||
rt.setName("测试试卷1");
|
rt.setName("测试试卷1");
|
||||||
rt.setProfile("XX单位用于测试CMM的试题");
|
rt.setProfile("XX单位用于测试CMM的试题");
|
||||||
rt.setCompanyId("1");
|
rt.setOrgId(1L);
|
||||||
System.out.println(JsonUtils.writeValueAsString(rt));
|
System.out.println(JsonUtils.writeValueAsString(rt));
|
||||||
}
|
}
|
||||||
public static void paperCompositionBasicVo(){
|
public static void paperCompositionBasicVo(){
|
||||||
@ -36,7 +36,7 @@ public class PaperApiTestController {
|
|||||||
rt.setId(1L);
|
rt.setId(1L);
|
||||||
rt.setName("测试试卷1");
|
rt.setName("测试试卷1");
|
||||||
rt.setProfile("XX单位用于测试CMM的试题");
|
rt.setProfile("XX单位用于测试CMM的试题");
|
||||||
rt.setCompanyId("1");
|
rt.setOrgId(1L);
|
||||||
System.out.println(JsonUtils.writeValueAsString(rt));
|
System.out.println(JsonUtils.writeValueAsString(rt));
|
||||||
}
|
}
|
||||||
public static void paperCompositionDetailVo(){
|
public static void paperCompositionDetailVo(){
|
||||||
|
@ -29,8 +29,8 @@ public class PaperApiTestService {
|
|||||||
select.setQuestion("我是选择题"+i);
|
select.setQuestion("我是选择题"+i);
|
||||||
select.setCreateUserId(user.getId());
|
select.setCreateUserId(user.getId());
|
||||||
select.setCreateTime(LocalDateTime.now());
|
select.setCreateTime(LocalDateTime.now());
|
||||||
select.setCompanyId(user.getCompanyId());
|
select.setOrgId(user.getCompanyId());
|
||||||
select.setRaceLable("6,8");
|
select.setTags("6,8");
|
||||||
//
|
//
|
||||||
List<PaperCommonQuestionVo.OptionVo> opts = new ArrayList<>();
|
List<PaperCommonQuestionVo.OptionVo> opts = new ArrayList<>();
|
||||||
PaperCommonQuestionVo.OptionVo opt =new PaperCommonQuestionVo.OptionVo();
|
PaperCommonQuestionVo.OptionVo opt =new PaperCommonQuestionVo.OptionVo();
|
||||||
@ -51,8 +51,8 @@ public class PaperApiTestService {
|
|||||||
select.setQuestion("我是多选题"+i);
|
select.setQuestion("我是多选题"+i);
|
||||||
select.setCreateUserId(user.getId());
|
select.setCreateUserId(user.getId());
|
||||||
select.setCreateTime(LocalDateTime.now());
|
select.setCreateTime(LocalDateTime.now());
|
||||||
select.setCompanyId(user.getCompanyId());
|
select.setOrgId(user.getCompanyId());
|
||||||
select.setRaceLable("7,9");
|
select.setTags("7,9");
|
||||||
//
|
//
|
||||||
List<PaperCommonQuestionVo.OptionVo> opts = new ArrayList<>();
|
List<PaperCommonQuestionVo.OptionVo> opts = new ArrayList<>();
|
||||||
PaperCommonQuestionVo.OptionVo opt =new PaperCommonQuestionVo.OptionVo();
|
PaperCommonQuestionVo.OptionVo opt =new PaperCommonQuestionVo.OptionVo();
|
||||||
@ -73,8 +73,8 @@ public class PaperApiTestService {
|
|||||||
select.setQuestion("我是判断题"+i);
|
select.setQuestion("我是判断题"+i);
|
||||||
select.setCreateUserId(user.getId());
|
select.setCreateUserId(user.getId());
|
||||||
select.setCreateTime(LocalDateTime.now());
|
select.setCreateTime(LocalDateTime.now());
|
||||||
select.setCompanyId(user.getCompanyId());
|
select.setOrgId(user.getCompanyId());
|
||||||
select.setRaceLable("7,9");
|
select.setTags("7,9");
|
||||||
//
|
//
|
||||||
List<PaperCommonQuestionVo.OptionVo> opts = new ArrayList<>();
|
List<PaperCommonQuestionVo.OptionVo> opts = new ArrayList<>();
|
||||||
PaperCommonQuestionVo.OptionVo opt =new PaperCommonQuestionVo.OptionVo();
|
PaperCommonQuestionVo.OptionVo opt =new PaperCommonQuestionVo.OptionVo();
|
||||||
|
Loading…
Reference in New Issue
Block a user