<?php
//--Class Fee--------------------------

include_once "clsbase_Fee.php";

class 
Fee extends base_Fee{

function 
RSFeeByFeeName($xKey){
    
$this->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--
?>