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.
41 lines
813 B
41 lines
813 B
<?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',
|
|
),
|
|
'tcm_user_herb' => array(
|
|
'id',
|
|
'uid',
|
|
'name',
|
|
'desc',
|
|
),
|
|
);
|
|
|
|
protected $primary_keys = array(
|
|
'tcm_user_case' => 'id',
|
|
'tcm_user_herb' => 'id',
|
|
);
|
|
}
|
|
|
|
|