JEMBOT MAWOT Bypass Shell
<?php
/**
* Intreface DAO
*
* @author: http://phpdao.com
* @date: 2015-01-28 23:26
*/
interface GenreDAO{
/**
* Get Domain object by primry key
*
* @param String $id primary key
* @Return Genre
*/
public function load($id);
/**
* Get all records from table
*/
public function queryAll();
/**
* Get all records from table ordered by field
* @Param $orderColumn column name
*/
public function queryAllOrderBy($orderColumn);
/**
* Delete record from table
* @param genre primary key
*/
public function delete($pkGenre);
/**
* Insert record to table
*
* @param Genre genre
*/
public function insert($genre);
/**
* Update record in table
*
* @param Genre genre
*/
public function update($genre);
/**
* Delete all rows
*/
public function clean();
public function queryByGenre($value);
public function deleteByGenre($value);
}
?>
xxxxx1.0, XXX xxxx