入库检验

This commit is contained in:
qianhao.xu
2024-04-17 18:47:38 +08:00
parent e5d0ae5408
commit b52e31272c
2 changed files with 415 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
import request from '@/utils/request'
/**
* 成品入库检验分页查询
* @param {查询条件} data
*/
export function listWmFgentryInspect(query) {
return request({
url: '/mes/wm/WmFgentryInspect/list',
method: 'get',
params: query,
})
}
/**
* 新增成品入库检验
* @param data
*/
export function addWmFgentryInspect(data) {
return request({
url: '/mes/wm/WmFgentryInspect',
method: 'post',
data: data,
})
}
/**
* 修改成品入库检验
* @param data
*/
export function updateWmFgentryInspect(data) {
return request({
url: '/mes/wm/WmFgentryInspect',
method: 'PUT',
data: data,
})
}
/**
* 获取成品入库检验详情
* @param {Id}
*/
export function getWmFgentryInspect(id) {
return request({
url: '/mes/wm/WmFgentryInspect/' + id,
method: 'get'
})
}
/**
* 删除成品入库检验
* @param {主键} pid
*/
export function delWmFgentryInspect(pid) {
return request({
url: '/mes/wm/WmFgentryInspect/' + pid,
method: 'delete'
})
}