广丰卷烟厂数采质量分析系统
zhuguifei
2026-04-03 08114b7451615854cb01556a7c477e32e17f520e
ruoyi-plus-soybean/src/typings/api/qm.std.api.d.ts
@@ -4,82 +4,75 @@
 * 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;
        }>;
  /**
   * 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 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 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>;
    }
    /** std list */
    type StdList = Api.Common.PaginatingQueryRecord<Std>;
  }
}