<?php
//--Class CommonFeeTP--------------------------

include_once "clsbase_CommonFeeTP.php";

class 
CommonFeeTP extends base_CommonFeeTP{

function 
RSCommonFeeTPByAcYAndSe($xKey$yKey){
    
$this->SetQuery("select * from CommonFeeTP where acadYear='$xKey' and semester='$yKey'");
}

function 
RSCommonFeeTPByAcYAndSeLimit($xKey$yKey$start$pageSize){
    
$this->SetQuery("select * from CommonFeeTP where acadYear='$xKey' and semester='$yKey' limit $start, $pageSize");
}

function 
RSCommonFeeTPByAcYAndSeAndIsNotDom($xKey$yKey){
    
$this->SetQuery("select * from CommonFeeTP where acadYear='$xKey' and semester='$yKey' and isDom='N'");
}

function 
RSCommonFeeTPByAcYAndSeAndIsDom($xKey$yKey){
    
$this->SetQuery("select * from CommonFeeTP where acadYear='$xKey' and semester='$yKey' and isDom='Y'");
}

//--End class CommonFeeTP--
?>