public void populate(ims.vo.ValueObjectBeanMap map, ims.ccosched.vo.PatActionStatusPointVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.actionstatusreason =
       vo.getActionStatusReason() == null
           ? null
           : (ims.vo.LookupInstanceBean) vo.getActionStatusReason().getBean();
   this.spenddate =
       vo.getSpEndDate() == null
           ? null
           : (ims.framework.utils.beans.DateBean) vo.getSpEndDate().getBean();
   this.spstartdate =
       vo.getSpStartDate() == null
           ? null
           : (ims.framework.utils.beans.DateBean) vo.getSpStartDate().getBean();
   this.actionstatus =
       vo.getActionStatus() == null
           ? null
           : (ims.vo.LookupInstanceBean) vo.getActionStatus().getBean();
 }