SetQuery("select * from Fee where feeName='$xKey'"); } function RSFeeByLikeFeeName($xKey){ $this->SetQuery("select * from Fee where feeName like '%$xKey%' order by sequence"); } function RSFeeByLikeFeeNameLimit($xKey, $start, $pageSize){ $this->SetQuery("select * from Fee where feeName like '%$xKey%' order by sequence limit $start, $pageSize"); } function RSFeeByFeeNameAndNotFeeId($xKey, $yKey){ $this->SetQuery("select * from Fee where feeName='$xKey' and feeId!='$yKey'"); } } //--End class Fee-- ?>