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' +// }) +// }