using System; using System.Collections; using System.Collections.Generic; using AIMSDAL; namespace AIMSModel { [Serializable] public partial class NotesRecord { private int? id; private string noteName; private DateTime? recordTime; private string content1; private string content2; private string content3; private string content4; private string content5; private string content6; private string content7; private string content8; private string content9; private string execWork; private int? operatorId; private DateTime? operatorTime; private string remark; /// /// /// public int? Id { get{ return id; } set{ id=value; } } /// /// /// public string NoteName { get{ return noteName; } set{ noteName=value; } } /// /// /// public DateTime? RecordTime { get{ return recordTime; } set{ recordTime=value; } } /// /// /// public string Content1 { get{ return content1; } set{ content1=value; } } /// /// /// public string Content2 { get{ return content2; } set{ content2=value; } } /// /// /// public string Content3 { get{ return content3; } set{ content3=value; } } /// /// /// public string Content4 { get{ return content4; } set{ content4=value; } } /// /// /// public string Content5 { get{ return content5; } set{ content5=value; } } /// /// /// public string Content6 { get{ return content6; } set{ content6=value; } } /// /// /// public string Content7 { get{ return content7; } set{ content7=value; } } /// /// /// public string Content8 { get{ return content8; } set{ content8=value; } } /// /// /// public string Content9 { get{ return content9; } set{ content9=value; } } /// /// /// public string ExecWork { get{ return execWork; } set{ execWork=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; } } } }