广丰卷烟厂数采质量分析系统
zhuguifei
7 天以前 2b31fa203f3435a582be51f45899d99164c9917a
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
/**
 * Namespace Api
 *
 * All backend api type
 */
declare namespace Api {
  /**
   * namespace Analy
   *
   * backend api module: "Analy"
   */
  namespace Analy {
    /** store silk */
    type StoreSilk = Common.CommonRecord<{
      /** id */
      id: CommonType.IdType;
      /** 牌号 */
      materialname: string;
      /** 批次号 */
      batchcode: string;
      /** 投料日期 */
      actualstarttime: string;
      /** 投料重量 */
      jobinput: number;
      /** 损耗重量 */
      weightloss: number;
      /** 出叶丝率 */
      silkrate: number;
      /** 储丝柜重量 */
      weight: number;
      /** 储丝柜出料开始时间 */
      distimebegin: string;
      /** 储丝柜出料结束时间 */
      distimeend: string;
      /** 柜子号(末位) */
      siloid: string;
    }>;
 
    /** store silk search params */
    type StoreSilkSearchParams = CommonType.RecordNullable<
      Pick<
        Api.Analy.StoreSilk,
        'materialname' | 'batchcode' | 'actualstarttime' | 'distimebegin' | 'distimeend' | 'siloid'
      > &
        Api.Common.CommonSearchParams
    >;
 
    /** store silk operate params */
    type StoreSilkOperateParams = CommonType.RecordNullable<
      Pick<
        Api.Analy.StoreSilk,
        | 'id'
        | 'materialname'
        | 'batchcode'
        | 'actualstarttime'
        | 'jobinput'
        | 'weightloss'
        | 'silkrate'
        | 'weight'
        | 'distimebegin'
        | 'distimeend'
        | 'siloid'
      >
    >;
 
    /** store silk list */
    type StoreSilkList = Api.Common.PaginatingQueryRecord<StoreSilk>;
  }
}