using System; using System.Collections; using System.Collections.Generic; using AIMSDAL; namespace AIMSModel { [Serializable] public partial class FactPersonDuty { private int? id; private int? patientId; private int? applyId; private int? personDutyId; private int? personId; private string operatorNo; private string operatorName; private DateTime? operateDate; /// /// /// public int? Id { get{ return id; } set{ id=value; } } /// /// /// public int? PatientId { get{ return patientId; } set{ patientId=value; } } /// /// /// public int? ApplyId { get{ return applyId; } set{ applyId=value; } } /// /// /// public int? PersonDutyId { get{ return personDutyId; } set{ personDutyId=value; } } /// /// /// public int? PersonId { get{ return personId; } set{ personId=value; } } /// /// /// public string OperatorNo { get{ return operatorNo; } set{ operatorNo=value; } } /// /// /// public string OperatorName { get{ return operatorName; } set{ operatorName=value; } } /// /// /// public DateTime? OperateDate { get{ return operateDate; } set{ operateDate=value; } } } }