use of com.bc.pmpheep.back.po.DecNationalPlan in project pmph by BCSquad.
the class DecNationalPlanServiceTest method add.
private DecNationalPlan add() {
DecNationalPlan decNationalPlan = new DecNationalPlan();
decNationalPlan.setDeclarationId(1L);
decNationalPlan.setMaterialName("普通心理学");
decNationalPlan.setIsbn("123456");
decNationalPlan.setRank(2);
decNationalPlan.setRankText("国家卫计委十二五");
decNationalPlan.setSort(13);
decNationalPlanService.addDecNationalPlan(decNationalPlan);
DecNationalPlan decNationalPlan2 = new DecNationalPlan(1L, "社会心理学", "654321", 1, "教育部十二五", "专业主修教材", null);
decNationalPlanService.addDecNationalPlan(decNationalPlan2);
DecNationalPlan decNationalPlan3 = new DecNationalPlan(2L, "变态心理学", "111", 3, "both", null, null);
decNationalPlanService.addDecNationalPlan(decNationalPlan3);
return decNationalPlan3;
}
use of com.bc.pmpheep.back.po.DecNationalPlan in project pmph by BCSquad.
the class DecNationalPlanServiceTest method testAddDecNationalPlan.
@Test
@Rollback(Const.ISROLLBACK)
public void testAddDecNationalPlan() {
DecNationalPlan decNationalPlan = new DecNationalPlan();
decNationalPlan.setDeclarationId(3L);
decNationalPlan.setMaterialName("人体解剖学");
decNationalPlan.setIsbn("666");
decNationalPlan.setRank(1);
decNationalPlan.setRankText("教育部十二五");
decNationalPlan.setNote("重点建设学科");
decNationalPlan.setSort(1);
decNationalPlan = decNationalPlanService.addDecNationalPlan(decNationalPlan);
Assert.assertTrue("添加数据失败", decNationalPlan.getId() > 0);
}
Aggregations