spring
5 小时以前 cc3001ab9e0ab8ce673b812a22ebea1edd332f2a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import request from '@/utils/request'
 
// 入库管理-分页查询入库记录(合格/不合格)
export const getStockInRecordListPage = (params) => {
  return request({
    url: '/stockInRecord/listPage',
    method: 'GET',
    params
  })
}
 
// 根据 id 查询入库记录详情
export const getStockInRecordById = (id) => {
  return request({
    url: '/stockInRecord/' + id,
    method: 'GET'
  })
}
 
// 批量删除入库记录
export const batchDeleteStockInRecords = (ids) => {
  return request({
    url: '/stockInRecord',
    method: 'DELETE',
    data: ids
  })
}