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
| export interface IProductParams {
| Filter?: string
| StartTime?: string
| FinishTime?: string
| Status?: string
| Sorting?: string
| SkipCount?: string
| MaxResultCount?: string
| Product?: string
| SegmentId?: string
| }
|
| export interface IProductTableList {
| items: IProductTableItem[]
| totalCount: number
| }
|
| export interface IProductTableItem {
| id: string
| code: string
| productModel: string
| planQty: string
| qualifiedQty: string
| shift: string
| planStartTime: string
| planFinishTime: string
| status: number
| segments: any[]
| }
|
| export interface IProductParamsRequest {
| model: string
| name: string
| code: string
| supplier: string
| remark: string
| }
|
| export interface IAbilityTypeResponse {
| text: string
| value: string
| }
|
| export interface IProductOptionsResponse {
| id: string
| model: string
| name: string
| remark: string
| supplier: string
| }
|
|