using System; using System.Collections; using System.Collections.Generic; using AIMSDAL; namespace AIMSModel { [Serializable] public partial class OperationRecordInstrumentList { private int? id; private int? operationRecordId; private string applianceUseType; private string tagPicture; private string remark; private string jsonTextData; private string operatorNo; private string operatorName; private DateTime? operateDate; public List ApplianceRecordList; /// /// /// public int? Id { get{ return id; } set{ id=value; } } /// /// /// public int? OperationRecordId { get{ return operationRecordId; } set{ operationRecordId=value; } } /// /// /// public string ApplianceUseType { get{ return applianceUseType; } set{ applianceUseType=value; } } /// /// /// public string TagPicture { get{ return tagPicture; } set{ tagPicture=value; } } /// /// /// public string Remark { get{ return remark; } set{ remark=value; } } /// /// /// public string JsonTextData { get{ return jsonTextData; } set{ jsonTextData=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; } } } }