public static function populateObject($row) { $highValueRule = new HighValueRule(); $highValueRule->setSeq($row['seq']); $highValueRule->setEmail($row['email']); $highValueRule->setFolderSeq($row['folderseq']); $highValueRule->setFrequency($row['frequency']); $highValueRule->setHighValue($row['highvalue']); $highValueRule->setIsActive($row['isactive']); $highValueRule->setMobile($row['mobile']); $highValueRule->setParameter($row['parameterchannelno']); $highValueRule->setChannelName($row['channelname']); $highValueRule->setChannelStation($row['channelstation']); $highValueRule->setFolderName($row['foldername']); $highValueRule->setIndustryName($row['industryname']); $highValueRule->setStationName($row['stationname']); $highValueRule->setStationType($row['stationtype']); $highValueRule->setRuleHits($row['rulehits']); $highValueRule->setLastRuleHitFileDataSeq($row['lastrulehitwqdfiledataseq']); $highValueRule->setRuleStartFileDataSeq($row['rulestartwqdfiledataseq']); return $highValueRule; }