From 2498326db6ac3afebeb356934276215b5678ed2e Mon Sep 17 00:00:00 2001 From: cjw Date: Fri, 23 Feb 2024 10:24:39 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=B0=E5=BD=95=E5=8E=86=E5=8F=B2=E5=89=8D?= =?UTF-8?q?=E7=AB=AFjs=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/api/mts/planRecordHistory.js | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 ruoyi-ui-vue3/src/api/mts/planRecordHistory.js diff --git a/ruoyi-ui-vue3/src/api/mts/planRecordHistory.js b/ruoyi-ui-vue3/src/api/mts/planRecordHistory.js new file mode 100644 index 0000000..a9241e5 --- /dev/null +++ b/ruoyi-ui-vue3/src/api/mts/planRecordHistory.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询生产计划明细日期记录历史列表 +export function listPlanRecordHistory(query) { + return request({ + url: '/mts/planRecord/history/list', + method: 'get', + params: query + }) +} + +// 查询生产计划明细日期记录历史详细 +export function getPlanRecordHistory(id) { + return request({ + url: '/mts/planRecord/history/' + id, + method: 'get' + }) +} + +// 新增生产计划明细日期记录历史 +export function addPlanRecordHistory(data) { + return request({ + url: '/mts/planRecord/history', + method: 'post', + data: data + }) +} + +// 修改生产计划明细日期记录历史 +// export function updatePlanRecordHistory(data) { +// return request({ +// url: '/mts/planRecord/history', +// method: 'put', +// data: data +// }) +// } + +// 删除生产计划明细日期记录历史 +// export function delPlanRecordHistory(id) { +// return request({ +// url: '/mts/planRecord/history/' + id, +// method: 'delete' +// }) +// }