1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CoreEntity.Entity
- {
- [Serializable]
- public class mem_MemberHealthDoc
- {
- private string _Id;
- private string _patientid;
- private long? _patientkey;
- private string _patientname;
- private string _patientage;
- private DateTime? _patientbirthday;
- private DateTime? _patientmariageat;
- private string _patientheight;
- private string _patientweight;
- private string _patientgender;
- private string _patientphone;
- public mem_MemberHealthDoc()
- {
- }
- public string PatientId
- {
- get { return _patientid; }
- set { _patientid = value; }
- }
- public long? PatientKey
- {
- get { return _patientkey; }
- set { _patientkey = value; }
- }
- public string PatientName
- {
- get { return _patientname; }
- set { _patientname = value; }
- }
- public string PatientAge
- {
- get { return _patientage; }
- set { _patientage = value; }
- }
- public DateTime? PatientBirthDay
- {
- get { return _patientbirthday; }
- set { _patientbirthday = value; }
- }
- public DateTime? PatientMariageAt
- {
- get { return _patientmariageat; }
- set { _patientmariageat = value; }
- }
- public string PatientHeight
- {
- get { return _patientheight; }
- set { _patientheight = value; }
- }
- public string PatientWeight
- {
- get { return _patientweight; }
- set { _patientweight = value; }
- }
- public string PatientGender
- {
- get { return _patientgender; }
- set { _patientgender = value; }
- }
- public string PatientPhone
- {
- get { return _patientphone; }
- set { _patientphone = value; }
- }
- public string _id { get => _Id; set => _Id = value; }
- }
- }
|