public PathwayRTTCurrentStatusVo(ims.pathways.vo.beans.PathwayRTTCurrentStatusVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.rttstatus = bean.getRTTStatus() == null ? null : bean.getRTTStatus().buildVo();
   this.statusby = bean.getStatusBy() == null ? null : bean.getStatusBy().buildVo();
   this.statusdatetime =
       bean.getStatusDateTime() == null ? null : bean.getStatusDateTime().buildDateTime();
 }
 public void populate(
     ims.vo.ValueObjectBeanMap map, ims.pathways.vo.beans.PathwayRTTCurrentStatusVoBean bean) {
   this.id = bean.getId();
   this.version = bean.getVersion();
   this.rttstatus = bean.getRTTStatus() == null ? null : bean.getRTTStatus().buildVo(map);
   this.statusby = bean.getStatusBy() == null ? null : bean.getStatusBy().buildVo(map);
   this.statusdatetime =
       bean.getStatusDateTime() == null ? null : bean.getStatusDateTime().buildDateTime();
 }