18 lines
		
	
	
		
			486 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			486 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace Core.Blueprint.Service.Domain.Entities
 | |
| {
 | |
|     public class SqlSampleItemEntity
 | |
|     {
 | |
|         public string? Id { get; set; }
 | |
|         public string TestName { get; set; } = string.Empty;
 | |
|         public char StatusCode { get; set; } = 'P';
 | |
|         public int NumValue { get; set; } = 0;
 | |
|         public DateTime CreatedAt { get; set; } = DateTime.Now;
 | |
|     }
 | |
| }
 | 
