Search in sources :

Example 11 with DecLastPosition

use of com.bc.pmpheep.back.po.DecLastPosition in project pmph by BCSquad.

the class DecLastPositionServiceTest method testGetDecLastPosition.

@Test
@Rollback(Const.ISROLLBACK)
public void testGetDecLastPosition() {
    long id = add().getId();
    DecLastPosition decLastPosition = decLastPositionService.getDecLastPositionById(id);
    Assert.assertNotNull("获取作家上套教材参编情况失败", decLastPosition);
}
Also used : DecLastPosition(com.bc.pmpheep.back.po.DecLastPosition) Test(org.junit.Test) BaseTest(com.bc.pmpheep.test.BaseTest) Rollback(org.springframework.test.annotation.Rollback)

Example 12 with DecLastPosition

use of com.bc.pmpheep.back.po.DecLastPosition in project pmph by BCSquad.

the class DecLastPositionServiceTest method testUpdateDecLastPosition.

@Test
@Rollback(Const.ISROLLBACK)
public void testUpdateDecLastPosition() {
    DecLastPosition decLastPosition = add();
    decLastPosition.setDeclarationId(3L);
    decLastPosition.setMaterialName("心理统计学");
    Integer count = decLastPositionService.updateDecLastPosition(decLastPosition);
    Assert.assertTrue("数据更新失败", count > 0);
}
Also used : DecLastPosition(com.bc.pmpheep.back.po.DecLastPosition) Test(org.junit.Test) BaseTest(com.bc.pmpheep.test.BaseTest) Rollback(org.springframework.test.annotation.Rollback)

Aggregations

DecLastPosition (com.bc.pmpheep.back.po.DecLastPosition)12 DecAcade (com.bc.pmpheep.back.po.DecAcade)5 DecCourseConstruction (com.bc.pmpheep.back.po.DecCourseConstruction)5 DecEduExp (com.bc.pmpheep.back.po.DecEduExp)5 DecNationalPlan (com.bc.pmpheep.back.po.DecNationalPlan)5 DecResearch (com.bc.pmpheep.back.po.DecResearch)5 DecTeachExp (com.bc.pmpheep.back.po.DecTeachExp)5 DecTextbook (com.bc.pmpheep.back.po.DecTextbook)5 DecWorkExp (com.bc.pmpheep.back.po.DecWorkExp)5 ArrayList (java.util.ArrayList)5 DecAcadeReward (com.bc.pmpheep.back.po.DecAcadeReward)4 DecAchievement (com.bc.pmpheep.back.po.DecAchievement)4 DecClinicalReward (com.bc.pmpheep.back.po.DecClinicalReward)4 DecIntention (com.bc.pmpheep.back.po.DecIntention)4 DecMonograph (com.bc.pmpheep.back.po.DecMonograph)4 DecMoocDigital (com.bc.pmpheep.back.po.DecMoocDigital)4 DecPublishReward (com.bc.pmpheep.back.po.DecPublishReward)4 DecSci (com.bc.pmpheep.back.po.DecSci)4 DecTextbookPmph (com.bc.pmpheep.back.po.DecTextbookPmph)4 DecExtensionVO (com.bc.pmpheep.back.vo.DecExtensionVO)4