示例#1
0
文件: Offer.java 项目: ipetty/i-bang
 public OfferVO toVO() {
   OfferVO vo = new OfferVO();
   BeanUtils.copyProperties(this, vo, "delegation");
   if (delegation != null) {
     vo.setDelegation(delegation.toVO());
   }
   return vo;
 }