123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- using System;
- namespace Com.Jpsoft.Hospital.Model
- {
- /// <summary>
- /// 实体类jp_customer_healthcheckup 。(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- public class jp_customer_healthcheckup
- {
- public jp_customer_healthcheckup()
- {}
- #region Model
- private int _hc_id;
- private int _hc_areaid;
- private string _hc_corp;
- private string _hc_name;
- private string _hc_sex;
- private int _hc_age;
- private string _hc_checkobj;
- private string _hc_result;
- private string _hc_recommend;
- private string _hc_tel1;
- private string _hc_tel2;
- private string _hc_remark;
- private DateTime _hc_createdate;
- private bool _hc_isvisit;
- private DateTime? _hc_nextvisitdate;
- private string _hc_ybtype;
- /// <summary>
- /// 体检客户ID
- /// </summary>
- public int hc_id
- {
- set{ _hc_id=value;}
- get{return _hc_id;}
- }
- /// <summary>
- /// 区域
- /// </summary>
- public int hc_areaid
- {
- set{ _hc_areaid=value;}
- get{return _hc_areaid;}
- }
- /// <summary>
- ///
- /// </summary>
- public string hc_corp
- {
- set{ _hc_corp=value;}
- get{return _hc_corp;}
- }
- /// <summary>
- /// 姓名
- /// </summary>
- public string hc_name
- {
- set{ _hc_name=value;}
- get{return _hc_name;}
- }
- /// <summary>
- /// 性别
- /// </summary>
- public string hc_sex
- {
- set{ _hc_sex=value;}
- get{return _hc_sex;}
- }
- /// <summary>
- /// 年龄
- /// </summary>
- public int hc_age
- {
- set{ _hc_age=value;}
- get{return _hc_age;}
- }
- /// <summary>
- /// 体检科目
- /// </summary>
- public string hc_checkobj
- {
- set{ _hc_checkobj=value;}
- get{return _hc_checkobj;}
- }
- /// <summary>
- /// 结论
- /// </summary>
- public string hc_result
- {
- set{ _hc_result=value;}
- get{return _hc_result;}
- }
- /// <summary>
- /// 医疗建议
- /// </summary>
- public string hc_recommend
- {
- set{ _hc_recommend=value;}
- get{return _hc_recommend;}
- }
- /// <summary>
- /// 电话1
- /// </summary>
- public string hc_tel1
- {
- set{ _hc_tel1=value;}
- get{return _hc_tel1;}
- }
- /// <summary>
- /// 电话2
- /// </summary>
- public string hc_tel2
- {
- set{ _hc_tel2=value;}
- get{return _hc_tel2;}
- }
- /// <summary>
- /// 备注
- /// </summary>
- public string hc_remark
- {
- set{ _hc_remark=value;}
- get{return _hc_remark;}
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- public DateTime hc_createdate
- {
- set{ _hc_createdate=value;}
- get{return _hc_createdate;}
- }
- /// <summary>
- /// 是否可随访
- /// </summary>
- public bool hc_isvisit
- {
- set{ _hc_isvisit=value;}
- get{return _hc_isvisit;}
- }
- /// <summary>
- /// 下次随访问时间
- /// </summary>
- public DateTime? hc_nextvisitdate
- {
- set{ _hc_nextvisitdate=value;}
- get{return _hc_nextvisitdate;}
- }
- /// <summary>
- /// 医保类别(1医保、2居民医保、3农合、4自费)和5商保
- /// </summary>
- public string hc_ybtype
- {
- set{ _hc_ybtype=value;}
- get{return _hc_ybtype;}
- }
- #endregion Model
- }
- }
|