This commit is contained in:
2025-11-22 14:22:36 +08:00
parent a0933afc97
commit 248d91729f
12 changed files with 899 additions and 83 deletions

View File

@@ -76,6 +76,36 @@ img:
report:
path: /Users/ab/Desktop/tmp/data/report/path/
# 网络上传文件临时路径配置
net:
upload:
# Windows环境路径
win:
filePath: "D:\\fileAll\\"
targetPath: "D:\\testFile"
# Linux环境路径
linux:
filePath: "/home/fileAll/"
targetPath: "/home/testFile"
upload-two:
# Windows环境路径
win:
filePath: "D:\\fileAllTwo\\"
targetPath: "D:\\testFileTwo"
# Linux环境路径
linux:
filePath: "/home/fileAllTwo/"
targetPath: "/home/testFileTwo"
jzt:
# Windows环境路径
win:
filePath: "D:\\fileAll\\"
targetPath: "D:\\testFile"
# Linux环境路径
linux:
filePath: "/opt/fileAll/"
targetPath: "/opt/testFile"
# 友虹OCR配置
youhong:
integrate: true

View File

@@ -76,6 +76,36 @@ img:
report:
path: ${REPORT_PATH:/app/data/reports}
# 网络上传文件临时路径配置Docker环境安全路径
net:
upload:
# Windows环境路径
win:
filePath: ${NET_UPLOAD_WIN_FILEPATH:"D:\\fileAll\\"}
targetPath: ${NET_UPLOAD_WIN_TARGETPATH:"D:\\testFile"}
# Linux环境路径
linux:
filePath: ${NET_UPLOAD_LINUX_FILEPATH:"/app/data/fileAll/"}
targetPath: ${NET_UPLOAD_LINUX_TARGETPATH:"/app/data/testFile"}
upload-two:
# Windows环境路径
win:
filePath: ${NET_UPLOAD_TWO_WIN_FILEPATH:"D:\\fileAllTwo\\"}
targetPath: ${NET_UPLOAD_TWO_WIN_TARGETPATH:"D:\\testFileTwo"}
# Linux环境路径
linux:
filePath: ${NET_UPLOAD_TWO_LINUX_FILEPATH:"/app/data/fileAllTwo/"}
targetPath: ${NET_UPLOAD_TWO_LINUX_TARGETPATH:"/app/data/testFileTwo"}
jzt:
# Windows环境路径
win:
filePath: ${NET_JZT_WIN_FILEPATH:"D:\\fileAll\\"}
targetPath: ${NET_JZT_WIN_TARGETPATH:"D:\\testFile"}
# Linux环境路径
linux:
filePath: ${NET_JZT_LINUX_FILEPATH:"/app/data/fileAll/"}
targetPath: ${NET_JZT_LINUX_TARGETPATH:"/app/data/testFile"}
# 友虹OCR配置
youhong:
integrate: ${YOUHONG_INTEGRATE:true}