广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-04 64c2870483568cdeb0206661249a19c5b06de8fe
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/**
 * Namespace Api
 *
 * All backend api type
 */
declare namespace Api {
    /**
     * namespace Analy
     *
     * backend api module: "Analy"
     */
    namespace Analy {
        /** feed match */
        type FeedMatch = Common.CommonRecord<{
            /** 时间戳 */
                time: string; 
            /** 班次+机台 */
                key: string; 
            /** 数据更新时间 */
                dacUpTime: string; 
            /** 1#喂丝机对应的第一个储丝柜 */
                fs11: string; 
            /** 1#喂丝机对应的第二个储丝柜 */
                fs12: string; 
            /** 2#喂丝机对应的第一个储丝柜 */
                fs21: string; 
            /** 2#喂丝机对应的第二个储丝柜 */
                fs22: string; 
            /** 3#喂丝机对应的第一个储丝柜 */
                fs31: string; 
            /** 3#喂丝机对应的第二个储丝柜 */
                fs32: string; 
            /** 4#喂丝机对应的第一个储丝柜 */
                fs41: string; 
            /** 4#喂丝机对应的第二个储丝柜 */
                fs42: string; 
            /** 1#机组对应的喂丝机和管道 */
                pipe01: number; 
            /** 2#机组对应的喂丝机和管道 */
                pipe02: number; 
            /** 3#机组对应的喂丝机和管道 */
                pipe03: number; 
            /** 4#机组对应的喂丝机和管道 */
                pipe04: number; 
            /** 5#机组对应的喂丝机和管道 */
                pipe05: number; 
            /** 6#机组对应的喂丝机和管道 */
                pipe06: number; 
            /** 7#机组对应的喂丝机和管道 */
                pipe07: number; 
            /** 8#机组对应的喂丝机和管道 */
                pipe08: number; 
            /** 9#机组对应的喂丝机和管道 */
                pipe09: number; 
            /** 10#机组对应的喂丝机和管道 */
                pipe10: number; 
            /** 11#机组对应的喂丝机和管道 */
                pipe11: number; 
            /** 12#机组对应的喂丝机和管道 */
                pipe12: number; 
            /** 喂丝机状态 1-连接 0-断开 */
                wsjState: number; 
            /** 班次 */
                shift: number; 
            /** 机台 */
                equNo: number; 
            /** 备注 */
                remark: string; 
        }>;
 
        /** feed match search params */
        type FeedMatchSearchParams = CommonType.RecordNullable<
            Pick<
                Api.Analy.FeedMatch,
                        | 'time'
                        | 'key'
            > &
            Api.Common.CommonSearchParams
        >;
 
        /** feed match operate params */
        type FeedMatchOperateParams = CommonType.RecordNullable<
            Pick<
                Api.Analy.FeedMatch,
                        | 'time'
                        | 'key'
                        | 'dacUpTime'
                        | 'fs11'
                        | 'fs12'
                        | 'fs21'
                        | 'fs22'
                        | 'fs31'
                        | 'fs32'
                        | 'fs41'
                        | 'fs42'
                        | 'pipe01'
                        | 'pipe02'
                        | 'pipe03'
                        | 'pipe04'
                        | 'pipe05'
                        | 'pipe06'
                        | 'pipe07'
                        | 'pipe08'
                        | 'pipe09'
                        | 'pipe10'
                        | 'pipe11'
                        | 'pipe12'
                        | 'wsjState'
                        | 'shift'
                        | 'equNo'
                        | 'remark'
            >
        >;
 
        /** feed match list */
        type FeedMatchList = Api.Common.PaginatingQueryRecord<FeedMatch>;
    }
}