Commit 755f56e3 authored by LSL's avatar LSL

浙农对账文件

parent 1c49d7a4
......@@ -10,6 +10,7 @@ import com.jqtx.windows.service.SftpService;
import com.jqtx.windows.web.response.JsonResult;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
@Service
......@@ -18,6 +19,9 @@ public class SftpServiceImpl implements SftpService {
@Autowired
private OssUtils ossUtils;
@Value("inf.oss.privateDomain")
private String privateDomain;
@Autowired
private SftpConfig sftpConfig;
......@@ -45,7 +49,7 @@ public class SftpServiceImpl implements SftpService {
sftp.close();
}
}
return JsonResult.success(ossUtils.generateTempURL(ossUrl));
return JsonResult.success(privateDomain+ossUrl);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment