SetQuery("select * from FeeGroup where feeGroupName='$xKey'"); } function RSFeeGroupByLikeFeeGroupName($xKey){ $this->SetQuery("select * from FeeGroup where feeGroupName like '%$xKey%' order by sequence"); } function RSFeeGroupByLikeFeeGroupNameLimit($xKey, $start, $pageSize){ $this->SetQuery("select * from FeeGroup where feeGroupName like '%$xKey%' order by sequence limit $start, $pageSize"); } function RSFeeGroupByFeeGroupNameAndNotFeeGroupId($xKey, $yKey){ $this->SetQuery("select * from FeeGroup where feeGroupName='$xKey' and feeGroupId!='$yKey'"); } function RSFeeGroupLimitOrderSeq($start, $pageSize){ $this->SetQuery("select * from FeeGroup order by sequence limit $start, $pageSize"); } } //--End class FeeGroup-- ?>