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.
		
		
		
		
		
			
		
			
				
					
					
						
							34 lines
						
					
					
						
							661 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							34 lines
						
					
					
						
							661 B
						
					
					
				| <?php | |
| 
 | |
| include_once SERVER_ROOT . '/data/dBase.php'; | |
| 
 | |
| /* | |
|  * 药方相关 | |
|  * @package data | |
|  */ | |
| class dUserCase extends dBase { | |
|     protected $fieldlist = array( | |
|         'tcm_user_case' => array( | |
|            'id', | |
|            'uid', | |
|            'formula_id', | |
|            'name', | |
|            'patient_name', | |
|            'patient_age', | |
|            'patient_sex', | |
|            'patient_say', | |
|            'first_diagnosis', | |
|            'diagnosis', | |
|            'prescribe_num', | |
|            'prescribe_herb', | |
|            'feedback', | |
|            'case_time', | |
|            'create_time', | |
|         ), | |
|     ); | |
| 
 | |
|     protected $primary_keys = array( | |
|         'tcm_user_case' => 'id', | |
|     ); | |
| } | |
| 
 | |
| 
 |