2025-02-20 11:14:27 +08:00
|
|
|
import { getAction, deleteAction, putAction, postAction, httpAction,uploadAction } from '@/api/manage'
|
|
|
|
|
|
|
|
|
|
const getFileLinkInfo = (params)=>getAction("/fileDataLink/getFileLinkInfo",params);
|
|
|
|
|
const processFile = (params)=>postAction("/fileDataLink/processFile",params);
|
2025-02-20 17:22:54 +08:00
|
|
|
const fileDataLinkDelete = (params)=>deleteAction("/fileDataLink/delete",params);
|
2025-02-24 14:41:28 +08:00
|
|
|
const isDataLinkFileParsed = (params)=>getAction("/fileDataLink/isDataLinkFileParsed",params);
|
2025-06-16 21:57:11 +08:00
|
|
|
const updateDmTableBySeqNo = (params)=>postAction("/fileDataLink/updateDmTableBySeqNo",params);
|
2025-02-20 11:14:27 +08:00
|
|
|
export {
|
|
|
|
|
getFileLinkInfo,
|
2025-02-20 17:22:54 +08:00
|
|
|
processFile,
|
2025-02-24 14:41:28 +08:00
|
|
|
fileDataLinkDelete,
|
2025-06-16 21:57:11 +08:00
|
|
|
isDataLinkFileParsed,
|
|
|
|
|
updateDmTableBySeqNo
|
2025-02-20 11:14:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|