public CancerImagingHotlistItemVo(
     ims.clinicaladmin.vo.beans.CancerImagingHotlistItemVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.cancerimagingevent =
       bean.getCancerImagingEvent() == null ? null : bean.getCancerImagingEvent().buildVo();
 }
 public void populate(
     ims.vo.ValueObjectBeanMap map,
     ims.clinicaladmin.vo.beans.CancerImagingHotlistItemVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.cancerimagingevent =
       bean.getCancerImagingEvent() == null ? null : bean.getCancerImagingEvent().buildVo(map);
 }