浏览代码

1.修改webservice

WoNiu 4 年之前
父节点
当前提交
375cc2b4e5
共有 1 个文件被更改,包括 3 次插入8 次删除
  1. 3 8
      src/main/java/com/galaxis/manatee/webservice/CountryEndpoint.java

+ 3 - 8
src/main/java/com/galaxis/manatee/webservice/CountryEndpoint.java

@@ -61,16 +61,11 @@ public class CountryEndpoint {
 	@PayloadRoot(namespace = NAMESPACE_URI, localPart = "Invoke")
 	@ResponsePayload
 	public InvokeResponse invoke(@RequestPayload Invoke request) {
-        //书写调用第三方接口方法
+		//书写调用第三方接口方法
+		log.info(request.getMethodName()+"----"+request.getParam()+"----"+request.getSchemaCode());
 		InvokeResponse invokeResponse=new InvokeResponse();
 		chuanyunHumanResourceScheduledTask.getPayrollManually();
-//		chuanyunHumanResourceScheduledTask.getUpdateLog();
-//		chuanyunBasicDataScheduledTask.getUserCompanyManually();
-//		chuanyunBasicDataScheduledTask.getCompanyManually();
-//		chuanyunBasicDataScheduledTask.getGroupProjectManually();
-//		chuanyunBasicDataScheduledTask.getCostCollectionManually();
-//		chuanyunBasicDataScheduledTask.getReimbursementItemsManually();
-		log.info("数据同步成功");
+		log.info("更新薪酬项成功");
 		invokeResponse.setResponse("{}");
 		return invokeResponse;
 	}