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

55 lines
1.0 KiB

9 months ago
<?php
include_once SERVER_ROOT . '/data/dBase.php';
/*
* 药方相关
* @package data
*/
9 months ago
class dCase extends dBase {
protected $fieldlist = array(
'tcm_case' => array(
'id',
'name',
'source',
'original',
'method',
'use_num',
'sort',
9 months ago
),
'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',
),
'tcm_case_use_log' => array(
'id',
'uid',
'case_id',
'use_num',
),
9 months ago
);
protected $primary_keys = array(
'tcm_case' => 'id',
'tcm_case_herb' => 'id',
'tcm_herb' => 'id',
'tcm_collect_log' => 'id',
'tcm_case_use_log' => 'id',
9 months ago
);
}