<?php
//--Class ProgramConfig--------------------------

include_once "clsbase_ProgramConfig.php";

class 
ProgramConfig extends base_ProgramConfig{

function 
RSProgramConfigByActivePcStatus(){
    
$this->SetQuery("select * from ProgramConfig where programConfStatus='Y' order by programConfId");
}

function 
RSProgramConfigByActivePcStatusLimit($start$pageSize){
    
$this->SetQuery("select * from ProgramConfig where programConfStatus='Y' order by programConfId limit $start, $pageSize");
}

function 
SearchByPcName($xKey){
    
$this->SetQuery("select * from ProgramConfig where programConfName='$xKey'");
}

function 
RSProgramConfigByPcNameAndNotPcId($xKey$yKey){
    
$this->SetQuery("select * from ProgramConfig where programConfName='$xKey' and programConfId!='$yKey'");
}

//--End class ProgramConfig--
?>