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

42 lines
813 B

9 months ago
<?php
include_once SERVER_ROOT . '/data/dBase.php';
/*
* 药方相关
* @package data
*/
class dUserCase extends dBase {
protected $fieldlist = array(
'tcm_user_case' => array(
'id',
'uid',
'case_id',
'name',
'patient_name',
'patient_age',
'patient_sex',
'patient_say',
'first_diagnosis',
'diagnosis',
'prescribe_num',
'prescribe_herb',
'feedback',
'case_time',
'create_time',
),
9 months ago
'tcm_user_herb' => array(
'id',
'uid',
'name',
'desc',
),
9 months ago
);
protected $primary_keys = array(
'tcm_user_case' => 'id',
9 months ago
'tcm_user_herb' => 'id',
9 months ago
);
}