广丰卷烟厂数采质量分析系统
zhuguifei
2026-04-03 08114b7451615854cb01556a7c477e32e17f520e
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
/**
 * Namespace Api
 *
 * All backend api type
 */
declare namespace Api {
  /**
   * namespace Qm
   *
   * backend api module: "Qm"
   */
  namespace Qm {
    /** std */
    type Std = Common.CommonRecord<{
      /** 编码 */
      id: CommonType.IdType;
      /** 规程代码 */
      stdCode: string;
      /** 规程名称 */
      stdName: string;
      /** 创建时间 */
      cdate: string;
      /** 版本号 */
      ver: number;
      /** 启用标识 */
      enable: number;
      /** 检验项目code */
      itemCod: string;
      /** 检验项目名称 */
      itemNam: string;
      /** 判定类型  0-手动判定,1-上下限判定,2-平均值判定,3-SD值判定,4-CV值判定,5-超标数判定 */
      typ: number;
      /** 备注 */
      stdDes: string;
      /** 检验级别 */
      checkLevel: number;
      /** 类型  : 0-成品  1-辅料 */
      category: number;
      /** $column.columnComment */
      matfltype: string;
      /** $column.columnComment */
      matflname: string;
    }>;
 
    /** std search params */
    type StdSearchParams = CommonType.RecordNullable<
      Pick<
        Api.Qm.Std,
        'stdCode' | 'stdName' | 'typ' | 'stdDes' | 'checkLevel' | 'category' | 'matfltype' | 'matflname'
      > &
        Api.Common.CommonSearchParams
    >;
 
    /** std operate params */
    type StdOperateParams = CommonType.RecordNullable<
      Pick<
        Api.Qm.Std,
        | 'id'
        | 'stdCode'
        | 'stdName'
        | 'cdate'
        | 'ver'
        | 'enable'
        | 'itemCod'
        | 'itemNam'
        | 'typ'
        | 'stdDes'
        | 'checkLevel'
        | 'category'
        | 'matfltype'
        | 'matflname'
      >
    >;
 
    /** std list */
    type StdList = Api.Common.PaginatingQueryRecord<Std>;
  }
}