using System; using System.Collections; using System.Collections.Generic; namespace AIMSModel { [Serializable] public partial class QualityControlRecord { private int? id; private int? qCId; private DateTime? recordTime; private int? departmentId; private string departmentName; private string patientName; private string inPatientNumber; private int? pointDeduction; private string personLiable; private string remark; private string description; private int? operatorId; private DateTime? operatorTime; private int? patientId; private int? operationApplyId; private int? operationRecordId; private string personLiableId; private string personLiable1; private string personLiable1Id; private string operationName; private string remark2; private string remark3; //外键关联的实体字段 private List qualityControlDetailedRecordList; private QualityControl qCRef; /// /// /// public int? Id { get { return id; } set { id = value; } } /// /// /// public int? QCId { get { return qCId; } set { qCId = value; } } /// /// /// public DateTime? RecordTime { get { return recordTime; } set { recordTime = value; } } /// /// /// public int? DepartmentId { get { return departmentId; } set { departmentId = value; } } /// /// /// public string DepartmentName { get { return departmentName; } set { departmentName = value; } } /// /// /// public string PatientName { get { return patientName; } set { patientName = value; } } /// /// /// public string InPatientNumber { get { return inPatientNumber; } set { inPatientNumber = value; } } /// /// /// public int? PointDeduction { get { return pointDeduction; } set { pointDeduction = value; } } /// /// /// public string PersonLiable { get { return personLiable; } set { personLiable = value; } } /// /// /// public string Remark { get { return remark; } set { remark = value; } } /// /// /// public string Description { get { return description; } set { description = value; } } /// /// /// public int? OperatorId { get { return operatorId; } set { operatorId = value; } } /// /// /// public DateTime? OperatorTime { get { return operatorTime; } set { operatorTime = value; } } /// /// /// public int? PatientId { get { return patientId; } set { patientId = value; } } /// /// /// public int? OperationApplyId { get { return operationApplyId; } set { operationApplyId = value; } } /// /// /// public int? OperationRecordId { get { return operationRecordId; } set { operationRecordId = value; } } /// /// /// public string PersonLiableId { get { return personLiableId; } set { personLiableId = value; } } /// /// /// public string PersonLiable1 { get { return personLiable1; } set { personLiable1 = value; } } /// /// /// public string PersonLiable1Id { get { return personLiable1Id; } set { personLiable1Id = value; } } /// /// /// public string OperationName { get { return operationName; } set { operationName = value; } } /// /// /// public string Remark2 { get { return remark2; } set { remark2 = value; } } /// /// /// public string Remark3 { get { return remark3; } set { remark3 = value; } } /// /// 外键关联的实体属性 /// public List QualityControlDetailedRecordList { get { return qualityControlDetailedRecordList; } set { qualityControlDetailedRecordList = value; } } public QualityControl QCRef { get { return qCRef; } set { qCRef = value; } } } }