use of com.ngtesting.platform.vo.TestPlanVo in project ngtesting-platform by aaronchen2k.
the class PlanServiceImpl method getById.
@Override
public TestPlanVo getById(Long caseId) {
TestPlan po = (TestPlan) get(TestPlan.class, caseId);
TestPlanVo vo = genVo(po);
return vo;
}
Aggregations