public ims.ocrr.vo.OrderedInvestigationStatusClinicalVo buildVo(ims.vo.ValueObjectBeanMap map) {
   ims.ocrr.vo.OrderedInvestigationStatusClinicalVo vo = null;
   if (map != null)
     vo = (ims.ocrr.vo.OrderedInvestigationStatusClinicalVo) map.getValueObject(this);
   if (vo == null) {
     vo = new ims.ocrr.vo.OrderedInvestigationStatusClinicalVo();
     map.addValueObject(this, vo);
     vo.populate(map, this);
   }
   return vo;
 }
 public void populate(
     ims.vo.ValueObjectBeanMap map, ims.ocrr.vo.OrderedInvestigationStatusClinicalVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.ordinvstatus =
       vo.getOrdInvStatus() == null
           ? null
           : (ims.vo.LookupInstanceBean) vo.getOrdInvStatus().getBean();
   this.changedatetime =
       vo.getChangeDateTime() == null
           ? null
           : (ims.framework.utils.beans.DateTimeBean) vo.getChangeDateTime().getBean();
   this.changeuser = vo.getChangeUser();
   this.statusreason = vo.getStatusReason();
 }