38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace Model.APIItem.HJGL
 | |
| {
 | |
|     public class WelderItem
 | |
|     {
 | |
| 
 | |
|         public string WED_ID { get; set; }
 | |
|         public string WED_Unit { get; set; }
 | |
|         public string WED_Code { get; set; }
 | |
|         public string WED_Name { get; set; }
 | |
|         public string WED_UserType { get; set; }
 | |
|         public string WED_Sex { get; set; }
 | |
|         public string WED_Birthday { get; set; }
 | |
|         public string WED_WorkCode { get; set; }
 | |
|         public string WED_Class { get; set; }
 | |
|         public string LimitDate { get; set; }
 | |
|         public string LeaveDate { get; set; }        
 | |
|         public string WED_Remark { get; set; }
 | |
|         public string ProjectId { get; set; }
 | |
|         public string IdentityCard { get; set; }
 | |
|         public string PostDate { get; set; }
 | |
|         public string TeamGroupId { get; set; }
 | |
|         public string WederType { get; set; }
 | |
|         public string AttachUrl { get; set; }
 | |
|         public string IsFaceTrain { get; set; }
 | |
|         public string UnitName { get; set; }
 | |
|         public string WED_IfOnGuard { get; set; }
 | |
| 
 | |
|     }
 | |
| 
 | |
| }
 | |
|  
 |