46 lines
		
	
	
		
			866 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			866 B
		
	
	
	
		
			C#
		
	
	
	
| 
 | |
| /// <summary>
 | |
| ///INTERFACE CLASS FOR TABLE t_wmsDealLocation
 | |
| ///By wm with codesmith. 
 | |
| ///on 05/19/2017
 | |
| /// </summary>
 | |
| 
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Data;
 | |
| 
 | |
| namespace DeiNiu.wms.Data.Model
 | |
| {
 | |
|     [Serializable]
 | |
|     public class WmsDealLocation : WmsDealLocation_base
 | |
|     {
 | |
|         public WmsDealLocation()
 | |
|         {
 | |
| 
 | |
|         }
 | |
| 
 | |
|         public WmsDealLocation(int id): base(id)
 | |
|         {
 | |
| 
 | |
|         }
 | |
|         public WmsDealLocation(DataRow dr): base(dr)
 | |
|         {
 | |
| 
 | |
|         }
 | |
|         protected override void getImp()
 | |
|         {
 | |
|             model_imp = new WmsDealLocation_Imp();
 | |
| 
 | |
|         }
 | |
| 
 | |
|         //begin cust db operation, query, excute sql etc.
 | |
|         public DataSet QueryByName(string name)
 | |
|         {
 | |
|             cmdParameters[0] = name;
 | |
|             return  CustQuery(100);
 | |
|         }
 | |
|     }
 | |
| }
 | |
|   |