50 lines
		
	
	
		
			997 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			997 B
		
	
	
	
		
			C#
		
	
	
	
| 
 | |
| /// <summary>
 | |
| ///INTERFACE CLASS FOR TABLE t_erp_bussinessDoc
 | |
| ///By wm  
 | |
| ///on 05/13/2020
 | |
| /// </summary>
 | |
| 
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Data;
 | |
| 
 | |
| namespace DeiNiu.wms.Data.Model
 | |
| {
 | |
|     [Serializable]
 | |
|     public class Erp_bussinessDoc : Erp_bussinessDoc_base
 | |
|     {
 | |
|         public Erp_bussinessDoc()
 | |
|         {
 | |
| 
 | |
|         }
 | |
| 
 | |
|         public Erp_bussinessDoc(int id): base(id)
 | |
|         {
 | |
| 
 | |
|         }
 | |
|         public Erp_bussinessDoc(DataRow dr): base(dr)
 | |
|         {
 | |
| 
 | |
|         }
 | |
|         public Erp_bussinessDoc(string venderNo) 
 | |
|         {
 | |
|             cmdParameters[0] = venderNo;
 | |
|             getModel(200);
 | |
|         }
 | |
|         protected override void getImp()
 | |
|         {
 | |
|             model_imp = new Erp_bussinessDoc_Imp();  
 | |
|         }
 | |
| 
 | |
|         //begin cust db operation, query, excute sql etc.
 | |
|         public DataSet QueryByName(string name)
 | |
|         {
 | |
|             cmdParameters[0] = name;
 | |
|             return  CustQuery(100);
 | |
|         }
 | |
|     }
 | |
| }
 | |
|   |