18 lines
		
	
	
		
			455 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			455 B
		
	
	
	
		
			C#
		
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace Model.APIItem.HJGL
 | |
| {
 | |
|     public class WeldingMethodItem
 | |
|     {
 | |
|         public string WeldingMethodId { get; set; }
 | |
|         public string WeldingMethodCode { get; set; }
 | |
|         public string WeldingMethodName { get; set; }
 | |
|         public string ConsumablesType { get; set; }
 | |
|         public string Remark { get; set; }
 | |
|     }
 | |
| }
 |