97 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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<ApplianceRecord> ApplianceRecordList; 
 | |
| 
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? OperationRecordId
 | |
| 		{
 | |
| 		    get{ return operationRecordId; }
 | |
| 			set{ operationRecordId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string ApplianceUseType
 | |
| 		{
 | |
| 		    get{ return applianceUseType; }
 | |
| 			set{ applianceUseType=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string TagPicture
 | |
| 		{
 | |
| 		    get{ return tagPicture; }
 | |
| 			set{ tagPicture=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Remark
 | |
| 		{
 | |
| 		    get{ return remark; }
 | |
| 			set{ remark=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string JsonTextData
 | |
| 		{
 | |
| 		    get{ return jsonTextData; }
 | |
| 			set{ jsonTextData=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OperatorNo
 | |
| 		{
 | |
| 		    get{ return operatorNo; }
 | |
| 			set{ operatorNo=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OperatorName
 | |
| 		{
 | |
| 		    get{ return operatorName; }
 | |
| 			set{ operatorName=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? OperateDate
 | |
| 		{
 | |
| 		    get{ return operateDate; }
 | |
| 			set{ operateDate=value; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |