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