16 lines
		
	
	
		
			295 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			295 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| 
 | |
| namespace AIMSExtension
 | |
| {
 | |
|     public class TableStructure
 | |
|     {
 | |
|         public string 字段名 { get; set; }
 | |
|         public string 类型 { get; set; }
 | |
|         public string 长度 { get; set; }
 | |
| 
 | |
|     }
 | |
| }
 |