You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
460 B
23 lines
460 B
<?php
|
|
/**
|
|
*
|
|
*/
|
|
include_once(SERVER_ROOT."/model/mBase.php");
|
|
|
|
|
|
class mCase extends mBase {
|
|
private $obj;
|
|
private $tbl;
|
|
private $case_herb_tbl;
|
|
private $herb_tbl;
|
|
private $collect_log_tbl;
|
|
|
|
public function __construct() {
|
|
$this->obj = new dCase();
|
|
$this->tbl = 'tcm_case';
|
|
$this->case_herb_tbl = 'tcm_case_herb';
|
|
$this->herb_tbl = 'tcm_herb';
|
|
$this->collect_log_tbl = 'tcm_collect_log';
|
|
}
|
|
|
|
}
|