34 lines
		
	
	
		
			640 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			640 B
		
	
	
	
		
			C#
		
	
	
	
| 
 | |
| 
 | |
| using System;
 | |
| 
 | |
| namespace DeiNiu.Data.BaseObject
 | |
| {
 | |
|     [Serializable]
 | |
|     public class BaseOperModel 
 | |
|     {
 | |
|         protected internal Object[] cmdParameters = new Object[12];
 | |
|         protected  int _id;
 | |
|         internal bool _dr;
 | |
|         internal int _operater;
 | |
|         internal string _create_time = String.Empty;
 | |
|         internal string _lastmodified = String.Empty;
 | |
| 
 | |
|         public Object[] CmdParameters
 | |
|         {
 | |
|             get
 | |
|             {
 | |
|                 return cmdParameters;
 | |
|             }
 | |
| 
 | |
|         }
 | |
| 
 | |
|         public int ID
 | |
|         {
 | |
|             get { return _id; }
 | |
|             set { _id = value; }
 | |
|         }
 | |
|        
 | |
|     }
 | |
| }
 |