فهرست منبع

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;
 	}