广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-04 63b4909ac5d0b7355be211cc7080673b41cdb3cc
ruoyi-plus-soybean/src/typings/api/analy.packer-data.api.d.ts
@@ -4,128 +4,128 @@
 * All backend api type
 */
declare namespace Api {
    /**
     * namespace Qa
     *
     * backend api module: "Qa"
     */
    namespace Qa {
        /** packer data */
        type PackerData = Common.CommonRecord<{
            /** 时间 */
                time: string;
            /** key */
                key: string;
            /** 网络状态(0异常,1正常) */
                online: number;
            /** 产量 */
                qty: number;
            /** 剔除产量 */
                badQty: number;
            /** 小盒膜消耗 */
                xiaohemoVal: number;
            /** 条盒膜消耗 */
                tiaohemoVal: number;
            /** 小盒纸消耗 */
                xiaohezhiVal: number;
            /** 条盒纸消耗 */
                tiaohezhiVal: number;
            /** 内衬纸消耗 */
                neichenzhiVal: number;
            /** 运行时间 */
                runTime: number;
            /** 停机时间 */
                stopTime: number;
            /** 停机次数 */
                stopTimes: number;
            /** 车速 */
                speed: number;
            /** 运行状态(-1 断网 0停止 1低速运行 2正常运行) */
                runStatus: number;
            /** 提升机产量 */
                tsQty: number;
            /** 主机产量(小包机) */
                mainQty: number;
            /** 主机剔除量 */
                mainBadQty: number;
            /** 透包机产量 */
                tbjQty: number;
            /** 透包机剔除好包 */
                tbjGdQty: number;
            /** 透包机剔除坏包 */
                tbjBadQty: number;
            /** 排包机产量 */
                pbjQty: number;
            /** 班次 */
                shift: number;
            /** 设备 */
                equNo: number;
        }>;
  /**
   * namespace Qa
   *
   * backend api module: "Qa"
   */
  namespace Qa {
    /** packer data */
    type PackerData = Common.CommonRecord<{
      /** 时间 */
      time: string;
      /** key */
      key: string;
      /** 网络状态(0异常,1正常) */
      online: number;
      /** 产量 */
      qty: number;
      /** 剔除产量 */
      badQty: number;
      /** 小盒膜消耗 */
      xiaohemoVal: number;
      /** 条盒膜消耗 */
      tiaohemoVal: number;
      /** 小盒纸消耗 */
      xiaohezhiVal: number;
      /** 条盒纸消耗 */
      tiaohezhiVal: number;
      /** 内衬纸消耗 */
      neichenzhiVal: number;
      /** 运行时间 */
      runTime: number;
      /** 停机时间 */
      stopTime: number;
      /** 停机次数 */
      stopTimes: number;
      /** 车速 */
      speed: number;
      /** 运行状态(-1 断网 0停止 1低速运行 2正常运行) */
      runStatus: number;
      /** 提升机产量 */
      tsQty: number;
      /** 主机产量(小包机) */
      mainQty: number;
      /** 主机剔除量 */
      mainBadQty: number;
      /** 透包机产量 */
      tbjQty: number;
      /** 透包机剔除好包 */
      tbjGdQty: number;
      /** 透包机剔除坏包 */
      tbjBadQty: number;
      /** 排包机产量 */
      pbjQty: number;
      /** 班次 */
      shift: number;
      /** 设备 */
      equNo: number;
    }>;
        /** packer data search params */
        type PackerDataSearchParams = CommonType.RecordNullable<
            Pick<
                Api.Qa.PackerData,
                        | 'time'
                        | 'key'
                        | 'online'
                        | 'qty'
                        | 'badQty'
                        | 'xiaohemoVal'
                        | 'tiaohemoVal'
                        | 'xiaohezhiVal'
                        | 'tiaohezhiVal'
                        | 'neichenzhiVal'
                        | 'runTime'
                        | 'stopTime'
                        | 'stopTimes'
                        | 'speed'
                        | 'runStatus'
                        | 'tsQty'
                        | 'mainQty'
                        | 'mainBadQty'
                        | 'tbjQty'
                        | 'tbjGdQty'
                        | 'tbjBadQty'
                        | 'pbjQty'
                        | 'shift'
                        | 'equNo'
            > &
            Api.Common.CommonSearchParams
        >;
    /** packer data search params */
    type PackerDataSearchParams = CommonType.RecordNullable<
      Pick<
        Api.Qa.PackerData,
        | 'time'
        | 'key'
        | 'online'
        | 'qty'
        | 'badQty'
        | 'xiaohemoVal'
        | 'tiaohemoVal'
        | 'xiaohezhiVal'
        | 'tiaohezhiVal'
        | 'neichenzhiVal'
        | 'runTime'
        | 'stopTime'
        | 'stopTimes'
        | 'speed'
        | 'runStatus'
        | 'tsQty'
        | 'mainQty'
        | 'mainBadQty'
        | 'tbjQty'
        | 'tbjGdQty'
        | 'tbjBadQty'
        | 'pbjQty'
        | 'shift'
        | 'equNo'
      > &
        Api.Common.CommonSearchParams
    >;
        /** packer data operate params */
        type PackerDataOperateParams = CommonType.RecordNullable<
            Pick<
                Api.Qa.PackerData,
                        | 'time'
                        | 'key'
                        | 'online'
                        | 'qty'
                        | 'badQty'
                        | 'xiaohemoVal'
                        | 'tiaohemoVal'
                        | 'xiaohezhiVal'
                        | 'tiaohezhiVal'
                        | 'neichenzhiVal'
                        | 'runTime'
                        | 'stopTime'
                        | 'stopTimes'
                        | 'speed'
                        | 'runStatus'
                        | 'tsQty'
                        | 'mainQty'
                        | 'mainBadQty'
                        | 'tbjQty'
                        | 'tbjGdQty'
                        | 'tbjBadQty'
                        | 'pbjQty'
                        | 'shift'
                        | 'equNo'
            >
        >;
    /** packer data operate params */
    type PackerDataOperateParams = CommonType.RecordNullable<
      Pick<
        Api.Qa.PackerData,
        | 'time'
        | 'key'
        | 'online'
        | 'qty'
        | 'badQty'
        | 'xiaohemoVal'
        | 'tiaohemoVal'
        | 'xiaohezhiVal'
        | 'tiaohezhiVal'
        | 'neichenzhiVal'
        | 'runTime'
        | 'stopTime'
        | 'stopTimes'
        | 'speed'
        | 'runStatus'
        | 'tsQty'
        | 'mainQty'
        | 'mainBadQty'
        | 'tbjQty'
        | 'tbjGdQty'
        | 'tbjBadQty'
        | 'pbjQty'
        | 'shift'
        | 'equNo'
      >
    >;
        /** packer data list */
        type PackerDataList = Api.Common.PaginatingQueryRecord<PackerData>;
    }
    /** packer data list */
    type PackerDataList = Api.Common.PaginatingQueryRecord<PackerData>;
  }
}