15 lines
		
	
	
		
			360 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			360 B
		
	
	
	
		
			C#
		
	
	
| using System;
 | |
| 
 | |
| namespace IRaCIS.Core.Domain.Models
 | |
| {
 | |
|     public class GlobalRS : Entity
 | |
|     {
 | |
|         public Guid GlobalId { get; set; }
 | |
|         public string TpCode { get; set; }
 | |
|         public decimal VisitNum { get; set; }
 | |
|         public bool Agree { get; set; }
 | |
|         public string NewRS { get; set; }
 | |
|         public string Note { get; set; }
 | |
| 
 | |
|     }
 | |
| } |