use of com.ngtesting.platform.vo.CustomFieldVo in project ngtesting-platform by aaronchen2k.
the class CustomFieldServiceImpl method genVos.
@Override
public List<CustomFieldVo> genVos(List<TestCustomField> pos) {
List<CustomFieldVo> vos = new LinkedList<CustomFieldVo>();
for (TestCustomField po : pos) {
CustomFieldVo vo = genVo(po);
vos.add(vo);
}
return vos;
}
use of com.ngtesting.platform.vo.CustomFieldVo in project ngtesting-platform by aaronchen2k.
the class CustomFieldServiceImpl method genVo.
@Override
public CustomFieldVo genVo(TestCustomField po) {
if (po == null) {
return null;
}
CustomFieldVo vo = new CustomFieldVo();
BeanUtilEx.copyProperties(vo, po);
vo.setOptionVos(this.customFieldOptionService.genVos(po.getOptions()));
return vo;
}
Aggregations