|  | @@ -2,8 +2,6 @@
 | 
	
		
			
				|  |  |   * Created by Tony on 2017/7/6.
 | 
	
		
			
				|  |  |   */
 | 
	
		
			
				|  |  |  let mongoose = require('mongoose');
 | 
	
		
			
				|  |  | -let dbm = require("../../config/db/db_manager");
 | 
	
		
			
				|  |  | -let smartcostdb = dbm.getCfgConnection("scConstruct");
 | 
	
		
			
				|  |  |  let Schema = mongoose.Schema;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  let RptCfgSchema = new Schema({
 | 
	
	
		
			
				|  | @@ -19,7 +17,4 @@ let RptCfgSchema = new Schema({
 | 
	
		
			
				|  |  |          }]
 | 
	
		
			
				|  |  |      }],
 | 
	
		
			
				|  |  |  });
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -let std_glj_type_mdl = smartcostdb.model("std_glj_type", RptCfgSchema, "std_glj_type");
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -module.exports = std_glj_type_mdl;
 | 
	
		
			
				|  |  | +mongoose.model("std_glj_type", RptCfgSchema, "std_glj_type");
 |