<?php
//--Class Province--------------------------

include_once "clsbase_Province.php";

class 
Province extends base_Province{

function 
RSProvinceLimit($start$pageSize){
    
$this->SetQuery("select * from Province order by provinceId limit $start, $pageSize");
}

function 
RSProvinceByPvName($xKey){
    
$this->SetQuery("select * from Province where provinceName like '%$xKey%' order by provinceName");
}

function 
RSProvinceByPvNameLimit($xKey$start$pageSize){
    
$this->SetQuery("select * from Province where provinceName like '%$xKey%' order by provinceName limit $start, $pageSize");
}

//--End class Province--
?>