广丰卷烟厂数采质量分析系统
baoshiwei
4 小时以前 e97b55310155a2dd691bd698a10295a4d867f60c
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
/**
 * Namespace Api
 *
 * All backend api type
 */
declare namespace Api {
  /**
   * namespace Qm
   *
   * backend api module: "Qm"
   */
  namespace Qm {
    /** judge details */
    type JudgeDetails = Common.CommonRecord<{
      /** 编码 */
      id: CommonType.IdType;
      /** 判定主标识 */
      judgeId: CommonType.IdType;
      /** 检验项目代码 */
      itemCode: string;
      /** 判定项ITEM (兼容旧字段) */
      itemCod: string;
      /** 检验项目名称 */
      itemName: string;
      /** 单位 */
      unit: string;
      /** 启用 */
      enable: number;
      /** 删除 */
      del: number;
      /** 检验项描述 */
      itemDes: string;
      /** 规程代码 */
      stdCode: string;
      /** 仪器描述 */
      instrumentDes: string;
      /** 标准值 */
      value3: number;
      /** 判定值1 */
      value1: number;
      /** 判定值2 */
      value2: number;
      /** 缺陷位置-外观用 */
      location: string;
      /** 分A,B,C,D四个级别 */
      checkLevel: string;
      /** 判定级别 (A,B,C,D) (兼容旧字段) */
      cls: string;
      /** 分值 */
      score: number;
      /** 分值标准 (扣分标准,得分标准) (兼容旧字段) */
      stdscore: number;
      /** 是否合成项 */
      ismix: number;
      /** 关联项ID */
      rid: CommonType.IdType;
      /** 类别 0:成品 1辅料 */
      category: number;
      /** 仪器编码 */
      instrumentCode: string;
      /** 备注 (兼容旧字段) */
      decisionDes: string;
      /** 修改人 */
      updateUser: string;
      /** 子节点 */
      children?: Api.Qm.JudgeDetails[];
    }>;
 
    /** judge details search params */
    type JudgeDetailsSearchParams = CommonType.RecordNullable<
      Pick<Api.Qm.JudgeDetails, 'judgeId' | 'itemCod' | 'itemName' | 'cls' | 'ismix'> & Api.Common.CommonSearchParams
    >;
 
    /** judge details operate params */
    type JudgeDetailsOperateParams = CommonType.RecordNullable<
      Pick<
        Api.Qm.JudgeDetails,
        | 'id'
        | 'judgeId'
        | 'itemCod'
        | 'itemName'
        | 'value3'
        | 'value1'
        | 'value2'
        | 'location'
        | 'cls'
        | 'stdscore'
        | 'ismix'
        | 'rid'
        | 'category'
        | 'decisionDes'
        | 'updateUser'
      >
    >;
 
    /** judge details list */
    type JudgeDetailsList = Api.Common.PaginatingQueryRecord<JudgeDetails>;
  }
}