| | |
| | | package com.java110.core.smo.impl; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.core.client.RestTemplate; |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.core.context.PageData; |
| | | import com.java110.core.factory.CallApiServiceFactory; |
| | |
| | | import com.java110.dto.assetImportLog.AssetImportLogDto; |
| | | import com.java110.intf.common.ITransactionLogInnerServiceSMO; |
| | | import com.java110.po.transactionLog.TransactionLogPo; |
| | | import com.java110.utils.constant.ServiceConstant; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.HttpMethod; |
| | | import org.springframework.scheduling.annotation.Async; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.web.client.RestTemplate; |
| | | |
| | | /** |
| | | * @ClassName SaveTransactionLogSMOImpl |
| | |
| | | @Override |
| | | @Async |
| | | public void saveAssetImportLog(AssetImportLogDto assetImportLogDto) { |
| | | String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/assetImportLog/saveAssetImportLog"; |
| | | String apiUrl = "http://api-service/api/assetImportLog/saveAssetImportLog"; |
| | | IPageData newPd = PageData.newInstance().builder("-1", "批量日志", "", "", |
| | | "", "", apiUrl, "", |
| | | AppDto.WEB_APP_ID); |
| | | |
| | | CallApiServiceFactory.callCenterService(restTemplate, newPd, JSONObject.toJSONString(assetImportLogDto), apiUrl, HttpMethod.POST); |
| | | } |
| | | } |