49 lines
1.8 KiB
C#
49 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Permissions;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class DoctorInquiryModel
|
|
{
|
|
public int id { get; set; }
|
|
public String physical_num { get; set; }
|
|
public String identity_num { get; set; }
|
|
public String name { get; set; }
|
|
public String status { get; set; }
|
|
public String family_history { get; set; }
|
|
public String discript { get; set; }
|
|
public String symptom { get; set; }
|
|
public String inquiry_date { get; set; }
|
|
public String personal { get; set; }
|
|
public String smoke_status { get; set; }
|
|
public String smoke_per_day { get; set; }
|
|
public String smoke_years { get; set; }
|
|
public String drink_status { get; set; }
|
|
public String drink_per_day { get; set; }
|
|
public String drink_years { get; set; }
|
|
public String menarche_age { get; set; }
|
|
public String menarche_time { get; set; }
|
|
public String menarche_per_week { get; set; }
|
|
public String menarche_stop_age { get; set; }
|
|
public String is_menarche { get; set; }
|
|
public String children { get; set; }
|
|
public String abortion_times { get; set; }
|
|
public String abortion_early_times { get; set; }
|
|
public String abortion_death_times { get; set; }
|
|
public String abortion_except_times { get; set; }
|
|
public String speedOrSlow_history_name { get; set; }
|
|
public String speedOrSlow_history_date { get; set; }
|
|
public String speedOrSlow_history_util { get; set; }
|
|
public String speedOrSlow_isOK { get; set; }
|
|
public String inquiry { get; set; }
|
|
public String ce_shi { get; set; }
|
|
|
|
//婚姻史 2023-11-08 xulu
|
|
public String marry_history { get; set; }
|
|
|
|
}
|
|
}
|