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