23 lines
		
	
	
		
			246 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			246 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.ComponentModel;
 | |
| 
 | |
| namespace AIMSExtension
 | |
| {
 | |
| 	public class MyCodeName
 | |
| 	{
 | |
| 		[DisplayName("代码")]
 | |
| 		public string CODE
 | |
| 		{
 | |
| 			get;
 | |
| 			set;
 | |
| 		}
 | |
| 
 | |
| 		[DisplayName("名称")]
 | |
| 		public string NAME
 | |
| 		{
 | |
| 			get;
 | |
| 			set;
 | |
| 		}
 | |
| 	}
 | |
| }
 |