use of com.ngtesting.platform.vo.OrgVo in project ngtesting-platform by aaronchen2k.
the class OrgServiceImpl method genVo.
@Override
public OrgVo genVo(TestOrg po) {
if (po == null) {
return null;
}
OrgVo vo = new OrgVo();
BeanUtilEx.copyProperties(vo, po);
return vo;
}
Aggregations