广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-02 80ff784bf60637cd348ae665fc907f7b1e527dd8
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { request } from '@/service/request';
 
 
/** 获取卷接机分析列表 */
export function fetchGetRollerSampleDataList (params?: Api.Qa.RollerDataSearchParams) {
  return request<Api.Qa.RollerDataList>({
    url: '/analy/roller/sampleList',
    method: 'get',
    params
  });
}
 
 
/** 获取卷接机分析列表 */
export function fetchGetRollerDataList (params?: Api.Qa.RollerDataSearchParams) {
    return request<Api.Qa.RollerDataList>({
        url: '/analy/roller/list',
        method: 'get',
        params
    });
}
/** 新增卷接机分析 */
export function fetchCreateRollerData (data: Api.Qa.RollerDataOperateParams) {
    return request<boolean>({
        url: '/analy/roller',
        method: 'post',
        data
    });
}
 
/** 修改卷接机分析 */
export function fetchUpdateRollerData (data: Api.Qa.RollerDataOperateParams) {
    return request<boolean>({
        url: '/analy/roller',
        method: 'put',
        data
    });
}
 
/** 批量删除卷接机分析 */
export function fetchBatchDeleteRollerData (times: CommonType.IdType[]) {
    return request<boolean>({
        url: `/analy/roller/${times.join(',')}`,
        method: 'delete'
    });
}