| 
					
				 | 
			
			
				@@ -12,7 +12,7 @@ export function listBm(query) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 // 查询业务模型详细 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 export function getBm(modelId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     return request({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        url: '/hl/bm/' + modelId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        url: '/hl/bm/detail?modelId=' + modelId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         method: 'get' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -38,7 +38,7 @@ export function updateBm(data) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 // 删除业务模型 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 export function delBm(modelId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     return request({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        url: '/hl/bm/del/' + modelId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        url: '/hl/bm/del?modelIds=' + modelId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         method: 'get' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -46,14 +46,15 @@ export function delBm(modelId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 // 选择对象 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 export function selectBm(modelId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     return request({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        url: '/hl/bm/obj/select/' + modelId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        url: '/hl/bm/obj/select?modelId=' + modelId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         method: 'get' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 export function addBmModel(modelId, query) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    query.modelId=modelId; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     return request({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        url: '/hl/bm/obj/add/' + modelId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        url: '/hl/bm/obj/add', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         method: 'get', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         params: query 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -78,7 +79,7 @@ export function getCheckModel(modelId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 // 导入分类 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 export function impClass(modelId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     return request({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        url: '/hl/bm/imp/' + modelId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        url: '/hl/bm/imp?modelId=' + modelId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         method: 'get' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 |