using System; namespace Com.Jpsoft.Hospital.Model { /// /// 实体类jp_yyxx 。(属性说明自动提取数据库字段的描述信息) /// public class jp_yyxx { public jp_yyxx() {} #region Model private int _id; private string _employeenum; private int _pbid; private string _peoplename; private string _tel; private string _idcard; private DateTime _seedoctortime; private DateTime _adddate; private string _remark; /// /// /// public int id { set{ _id=value;} get{return _id;} } /// /// /// public string employeenum { set{ _employeenum=value;} get{return _employeenum;} } /// /// /// public int pbid { set{ _pbid=value;} get{return _pbid;} } /// /// /// public string peoplename { set{ _peoplename=value;} get{return _peoplename;} } /// /// /// public string tel { set{ _tel=value;} get{return _tel;} } /// /// /// public string idcard { set{ _idcard=value;} get{return _idcard;} } /// /// 大约看病时间 /// public DateTime seedoctortime { set{ _seedoctortime=value;} get{return _seedoctortime;} } /// /// /// public DateTime adddate { set{ _adddate=value;} get{return _adddate;} } /// /// /// public string remark { set{ _remark=value;} get{return _remark;} } #endregion Model } }