using System; using System.Collections; using System.Collections.Generic; using AIMSDAL; namespace AIMSModel { [Serializable] public partial class PrintDocumentUP { private int? id; private int? patientId; private int? applyId; private int? recorId; private int? recoverId; private string documentId; private string documentName; private string isUpload; private int? operatorId; private DateTime? operatorTime; private string remark; private string remark2; private string remark3; /// /// /// 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? RecorId { get{ return recorId; } set{ recorId=value; } } /// /// /// public int? RecoverId { get{ return recoverId; } set{ recoverId=value; } } /// /// /// public string DocumentId { get{ return documentId; } set{ documentId=value; } } /// /// /// public string DocumentName { get{ return documentName; } set{ documentName=value; } } /// /// /// public string IsUpload { get{ return isUpload; } set{ isUpload=value; } } /// /// /// public int? OperatorId { get{ return operatorId; } set{ operatorId=value; } } /// /// /// public DateTime? OperatorTime { get{ return operatorTime; } set{ operatorTime=value; } } /// /// /// public string Remark { get{ return remark; } set{ remark=value; } } /// /// /// public string Remark2 { get{ return remark2; } set{ remark2=value; } } /// /// /// public string Remark3 { get{ return remark3; } set{ remark3=value; } } } }