Viewing file: clsbase_SysOfficerStatusDes.php (3.2 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php //--Class base_SysOfficerStatusDes-------------------------- //--PK of base_SysOfficerStatusDes :: // 1. officerStatus
include_once "Db.php";
class base_SysOfficerStatusDes extends Db{
var $result; var $status;
var $officerStatus; var $officerStatusCode; var $description; var $officerStatusDefault;
function AddNew(){ //--гЄйаБёНґ№ХйаБЧиНµйН§ЎТГаѕФиБўйНБЩЕгЛБи //--вґВЁРЎУЛ№ґК¶Т№РўН§ўйНБЩЕўН§НкНєаЁкЎгЛйа»з№ 1 $this->status = 1; }
function Edit(){ //--гЄйаБёНґ№ХйаБЧиНµйН§ЎТГ»ГСє»ГШ§ўйНБЩЕ //--вґВЁРЎУЛ№ґК¶Т№РўН§ўйНБЩЕўН§НкНєаЁкЎгЛйа»з№ 2 $this->status = 2; }
function Save(){ //--гЄйаБёНґ№ХйаБЧиНµйН§ЎТГєС№·ЦЎўйНБЩЕг№НкНєаЁкЎаўйТКЩи°Т№ўйНБЩЕ //--вґВЁРµГЗЁКНєК¶Т№РўН§ўйНБЩЕЗиТўйНБЩЕг№НкНєаЁкЎа»з№ўйНБЩЕгЛБиЛГЧНўйНБЩЕаґФБ //--1 а»з№ўйНБЩЕгЛБи 2 а»з№ўйНБЩЕаґФБ if ($this->status==1){ $this->officerStatus=$this->GetNextCode(); $sql = "insert into SysOfficerStatusDes values('$this->officerStatus', '$this->officerStatusCode', '$this->description', '$this->officerStatusDefault')"; }else { $sql = "update SysOfficerStatusDes set officerStatusCode='$this->officerStatusCode', description='$this->description', officerStatusDefault='$this->officerStatusDefault' where officerStatus='$this->officerStatus'"; } $this->SetQuery($sql); }
function Delete(){ //--гЄйаБёНґ№ХйаѕЧиНЕєўйНБЩЕаґФБг№НкНєаЁкЎ //--а»з№ЎТГЕєўйНБЩЕ·ХЕР 1 аГ¤НГмґ //--µйН§аГХВЎаБёНґµТБЕУґСєґС§№Хй SearchByKey()-->GetRecord()-->Delete() $this->SetQuery("delete from SysOfficerStatusDes where officerStatus='$this->officerStatus'"); }
function GetNextCode(){ //--гЄйаБёНґ№ХйаѕЧиНЛТ¤иТКЩ§КШґўН§їФЕґм·ХигЄйа»з№¤ХВмўН§µТГТ§ г№ЕСЎЙіР auto increment //--µйН§а»з№їФЕґм·ХидБидґйЎУЛ№ґГЛСКаН§·Т§ЁНАТѕ $this->SetQuery("select max(officerStatus) as num from SysOfficerStatusDes"); if ($result=$this->GetResult()) { return $result['num']+1; } }
function RSSysOfficerStatusDes(){ //--аБёНґ·ХиўЦ鹵鹴йЗВ RS (Result Set) БХ¤ЗТБЛБТВЗиТЁРдґйГСєўйНБЩЕЎЕСєБТЁТЎЎТГ select БТЎЎЗиТ 1 аГ¤НГмґ //--»ЎµФаБЧиНаГХВЎгЄйаБёНґ RSxxxx ЁРµйН§аГХВЎаБёНґ GetRecord() ґйЗВаКБН //--вґВКТБТГ¶аѕФиБаБёНґдґйµТБµйН§ЎТГ бµиµйН§ўЦ鹵鹴йЗВ RS $this->SetQuery("select * from SysOfficerStatusDes order by officerStatus"); }
function GetRecord(){ //--а»з№аБёНґ·Хи№УўйНБЩЕЁТЎ ResultSet БТЎУЛ№ґгЛйЎСєбНµ·ГФєФЗµмўН§НкНєаЁзЎ //--аГХВЎ GetRecord() Л№Ц觤ГСй§ ЁРаЕЧиН№µСЗЄХйаГ¤НГмґд»НХЎЛ№Ци§аГ¤НГмґ if ($this->result = $this->GetResult()) { $this->officerStatus = $this->result['officerStatus']; $this->officerStatusCode = $this->result['officerStatusCode']; $this->description = $this->result['description']; $this->officerStatusDefault = $this->result['officerStatusDefault']; return 1; }else { return 0; } }
function SearchByKey($xKey){ //--гЄйаБёНґ№ХйаѕЧиН¤й№ЛТўйНБЩЕµТБ PK µйН§ГРєШѕТГТБФаµНГмґйЗВ //--бЕРµйН§µТБґйЗВаБёНґ GetRecord() аКБН if ($this->SetQuery("select * from SysOfficerStatusDes where officerStatus= '$xKey'")){ return 1; }else { return 0; } }
function NumRow(){ //--а»з№аБёНґ·Хи¤Ч№¤иТЁУ№З№ўйНБЩЕЁТЎЎТГ select вґВаБёНґ RSxxxx return $this->GetRowSelected(); }
function Destroy(){ //--а»з№аБёНґКУЛГСє»ФґЎТГµФґµиНЁТЎ°Т№ўйНБЩЕ return $this->DestroyDb(); }
//****************** You can add new functions below **********************//
} //--End class base_SysOfficerStatusDes--
?>
|