37 lines
		
	
	
		
			798 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			798 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using AIMSModel;
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| 
 | |
| namespace DrawGraph
 | |
| {
 | |
|     public class DocumentParent
 | |
|     {
 | |
|         public DocumentParent() {
 | |
|             operationRecord = new OperationRecord(); 
 | |
|         }
 | |
| 
 | |
|         private OperationRecord operationRecord;
 | |
|         public int OperationApplyId { get; set; }  
 | |
| 
 | |
|         public OperationRecord OpeRecord
 | |
|         {
 | |
|             get
 | |
|             {
 | |
|                 return operationRecord;
 | |
|             }
 | |
| 
 | |
|             set
 | |
|             {
 | |
|                 operationRecord = value;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         public int Id { get; set; }
 | |
|         public string 文书名称 { get; set; }
 | |
|         public string 操作人 { get; set; }
 | |
|         public DateTime 操作时间 { get; set; }
 | |
|     }
 | |
| }
 |