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
| /**
| * Namespace Api
| *
| * All backend api type
| */
| declare namespace Api {
| /**
| * namespace Qm
| *
| * backend api module: "Qm"
| */
| namespace Qm {
| /** judge */
| type Judge = Common.CommonRecord<{
| /** 编码 */
| id: CommonType.IdType;
| /** 物料牌号代码 */
| matCode: string;
| /** 物料牌号 */
| matName: string;
| /** 版本号 */
| version: number;
| /** 状态 */
| status: number;
| /** 判定规程COD */
| stdCod: string;
| /** 创建时间 */
| cdate: string;
| /** 生效人/操作人员 */
| oper: string;
| /** 备注 */
| des: string;
| /** 物料类型 */
| category: number;
| /** 辅料类型编码 */
| typeCode: string;
| /** 辅料类型名称 */
| typeName: string;
| /** 判定名称 */
| judgeName: string;
| }>;
|
| /** judge search params */
| type JudgeSearchParams = CommonType.RecordNullable<
| Pick<
| Api.Qm.Judge,
| | 'matCode'
| | 'matName'
| | 'judgeName'
| | 'category'
| | 'status'
| > &
| Api.Common.CommonSearchParams
| >;
|
| /** judge operate params */
| type JudgeOperateParams = CommonType.RecordNullable<
| Pick<
| Api.Qm.Judge,
| | 'matCode'
| | 'matName'
| | 'status'
| | 'stdCod'
| | 'cdate'
| | 'oper'
| | 'des'
| | 'category'
| | 'typeCode'
| | 'typeName'
| | 'judgeName'
| >
| >;
|
| /** judge list */
| type JudgeList = Api.Common.PaginatingQueryRecord<Judge>;
| }
| }
|
|