Viewing file: da_ea_BaseSalary.php (1.77 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("my_ea_model.php");
class Da_ea_basesalary extends My_ea_model {
// PK is bsId
public $bsId;
public $bsEdgId;
public $bsLevelId;
public $bsStartUse;
public $bsFinishUse;
public $bsAmount;
public $last_insert_id;
function Da_ea_basesalary() {
parent::__construct();
$this->load->database('ea', TRUE);
}
function insert() {
// if there is no auto_increment field, please remove it
$sql = "INSERT INTO $this->ea_dbname.ea_BaseSalary (bsId, bsEdgId, bsLevelId, bsStartUse, bsFinishUse, bsAmount)
VALUES(?, ?, ?, ?, ?, ?)";
$this->db->query($sql, array($this->bsId, $this->bsEdgId, $this->bsLevelId, $this->bsStartUse, $this->bsFinishUse, $this->bsAmount));
$this->last_insert_id = $this->db->insert_id();
}
function update() {
// if there is no primary key, please remove WHERE clause.
$sql = "UPDATE $this->ea_dbname.ea_BaseSalary
SET bsEdgId=?, bsLevelId=?, bsStartUse=?, bsFinishUse=?, bsAmount=?
WHERE bsId=?";
$this->db->query($sql, array($this->bsEdgId, $this->bsLevelId, $this->bsStartUse, $this->bsFinishUse, $this->bsAmount, $this->bsId));
}
function delete() {
// if there is no primary key, please remove WHERE clause.
$sql = "DELETE FROM $this->ea_dbname.ea_BaseSalary
WHERE bsId=?";
$this->db->query($sql, array($this->bsId));
}
/*
* You have to assign primary key value before call this function.
*/
function get_by_key($withSetAttributeValue=FALSE) {
$sql = "SELECT *
FROM $this->ea_dbname.ea_BaseSalary
WHERE bsId=?";
$query = $this->db->query($sql, array($this->bsId));
if ( $withSetAttributeValue ) {
$this->row2attribute( $query->row() );
} else {
return $query ;
}
}
} //=== end class Da_ea_basesalary
?>
|