录医案
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.

47 lines
907 B

9 months ago
<?php
include_once SERVER_ROOT . '/data/dBase.php';
/*
* 药方相关
* @package data
*/
class dCase extends dBase {
protected $fieldlist = array(
'tcm_case' => array(
'id',
'name',
'source',
9 months ago
'original',
9 months ago
'method',
9 months ago
'use_num',
9 months ago
'sort',
),
'tcm_case_herb' => array(
'id',
'case_id',
'herb_id',
'num',
'sort',
),
'tcm_herb' => array(
'id',
'name',
'desc',
),
'tcm_collect_log' => array(
'id',
'collect_msg',
'collect_time',
),
);
protected $primary_keys = array(
'tcm_case' => 'id',
'tcm_case_herb' => 'id',
'tcm_herb' => 'id',
'tcm_collect_log' => 'id',
);
}