| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// 患者信息表
- /// </summary>
- [Serializable]
- public class T_Sys_Patirnt
- {
- public T_Sys_Patirnt()
- { }
- #region Model
- private int _f_patirntid;
- private string _f_department;
- private string _f_patirntname;
- private DateTime _f_ptime;
- private string _f_phone;
- private int _f_sex;
- private int _f_age;
- private string _f_diagnosis;
- private string _f_doctor;
- private int _f_followUp;
- private int _f_deleteFlag;
- private int _f_satisfaction;
- private string _f_note;
- private DateTime _f_followUpTime;
- private int _f_callId;
- private string _f_lvyin;
- private int _f_actionid;
- /// <summary>
- /// 患者id
- /// </summary>
- public int PatirntID
- {
- set { _f_patirntid = value; }
- get { return _f_patirntid; }
- }
- /// <summary>
- /// 科室
- /// </summary>
- public string Department
- {
- set { _f_department = value; }
- get { return _f_department; }
- }
- /// <summary>
- /// 患者姓名
- /// </summary>
- public string PatirntName
- {
- set { _f_patirntname = value; }
- get { return _f_patirntname; }
- }
- /// <summary>
- /// 时间
- /// </summary>
- public DateTime PTime
- {
- set { _f_ptime = value; }
- get { return _f_ptime; }
- }
- /// <summary>
- /// 电话
- /// </summary>
- public string Phone
- {
- set { _f_phone = value; }
- get { return _f_phone; }
- }
-
- /// <summary>
- /// 性别 1:男 2:女
- /// </summary>
- public int Sex
- {
- set { _f_sex = value; }
- get { return _f_sex; }
- }
- /// <summary>
- /// 年龄
- /// </summary>
- public int Age
- {
- set { _f_age = value; }
- get { return _f_age; }
- }
- /// <summary>
- /// 诊断
- /// </summary>
- public string Diagnosis
- {
- set { _f_diagnosis = value; }
- get { return _f_diagnosis; }
- }
- /// <summary>
- /// 医生
- /// </summary>
- public string Doctor
- {
- set { _f_doctor = value; }
- get { return _f_doctor; }
- }
- /// <summary>
- /// 随访状态 0:未随访 1:已随访
- /// </summary>
- public int FollowUp
- {
- set { _f_followUp = value; }
- get { return _f_followUp; }
- }
- /// <summary>
- /// 是否删除 0:未删除 1:删除
- /// </summary>
- public int DeleteFlag
- {
- set { _f_deleteFlag = value;}
- get { return _f_deleteFlag; }
- }
- /// <summary>
- /// 满意度 0:不满意 1:满意 2:表扬
- /// </summary>
- public int Satisfaction
- {
- set { _f_satisfaction = value; }
- get { return _f_satisfaction; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- public string Note
- {
- set { _f_note = value; }
- get { return _f_note; }
- }
- /// <summary>
- /// 录音
- /// </summary>
- public string Lvyin
- {
- set { _f_lvyin = value; }
- get { return _f_lvyin; }
- }
-
- /// <summary>
- /// 随访时间
- /// </summary>
- public DateTime FollowUpTime
- {
- set { _f_followUpTime = value; }
- get { return _f_followUpTime; }
- }
-
- /// <summary>
- /// 通话记录Id
- /// </summary>
- public int CallId
- {
- set { _f_callId = value; }
- get { return _f_callId; }
- }
- public int ActionID
- {
- set { _f_actionid = value; }
- get { return _f_actionid; }
- }
- public string lvlj { set; get; }
- #endregion Model
- }
- }
|