45 lines
		
	
	
		
			836 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			836 B
		
	
	
	
		
			C#
		
	
	
	
| 
 | |
| /// <summary>
 | |
| ///INTERFACE CLASS FOR TABLE t_wmsDeskLights
 | |
| ///By wm  
 | |
| ///on 07/21/2019
 | |
| /// </summary>
 | |
| 
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Data;
 | |
| 
 | |
| namespace DeiNiu.wms.Data.Model
 | |
| {
 | |
|     [Serializable]
 | |
|     public class WmsDeskLights : WmsDeskLights_base
 | |
|     {
 | |
|         public WmsDeskLights()
 | |
|         {
 | |
| 
 | |
|         }
 | |
| 
 | |
|         public WmsDeskLights(int id): base(id)
 | |
|         {
 | |
| 
 | |
|         }
 | |
|         public WmsDeskLights(DataRow dr): base(dr)
 | |
|         {
 | |
| 
 | |
|         }
 | |
|       protected override void getImp()
 | |
|         {
 | |
|             model_imp = new WmsDeskLights_Imp();  
 | |
|         }
 | |
| 
 | |
|         //begin cust db operation, query, excute sql etc.
 | |
|         public DataSet QueryByName(string name)
 | |
|         {
 | |
|             cmdParameters[0] = name;
 | |
|             return  CustQuery(100);
 | |
|         }
 | |
|     }
 | |
| }
 | |
|   |