12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection.Emit;
- using System.Text;
- namespace WpfTest1.SQLite
- {
- public class Patient
- {
- public int p_id { get; set; }
- public string p_record_id { get; set; } //注意这里的record指的是病例号不是记录的record
- public string p_name { get; set; }
- public string p_gender { get; set; }
- public double p_height { get; set; }
- public double p_weight { get; set; }
- public int p_pregnancy_time { get; set; }
- public DateTime p_birthdate { get; set; }
- public string p_phone { get; set; }
- public string p_address { get; set; }
- public string p_diagnosis { get; set; }
- public string p_history { get; set; }
- public string p_name_py { get; set; }
- public DateTime p_last_filter_time { get; set; }
- public DateTime p_last_evaluation_time { get; set; }
- public Boolean p_delete_flag { get; set; }
- public int doc_id { get; set; }
- }
- }
|