42 lines
		
	
	
		
			700 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			700 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using AIMSDAL;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class UserTempPurview
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private int? templateId; 
 | |
|         private int? roleId; 
 | |
| 	
 | |
| 	
 | |
| 	    /// <summary>
 | |
|         /// Id
 | |
|         /// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 模板Id
 | |
|         /// </summary>
 | |
| 		public int? TemplateId
 | |
| 		{
 | |
| 		    get{ return templateId; }
 | |
| 			set{ templateId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 角色Id
 | |
|         /// </summary>
 | |
| 		public int? RoleId
 | |
| 		{
 | |
| 		    get{ return roleId; }
 | |
| 			set{ roleId=value; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |